import type { AppConfig } from '@nuxt/schema'; import type { LinkProps, ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/footer-columns'; type FooterColumns = ComponentConfig; export interface FooterColumnLink extends Omit { label: string; /** * @IconifyIcon */ icon?: string; class?: any; ui?: Pick; } export interface FooterColumn { label: string; children?: T[]; } export interface FooterColumnsProps { /** * The element or component this component should render as. * @defaultValue 'div' */ as?: any; class?: any; columns?: FooterColumn[]; ui?: FooterColumns['slots']; } type SlotProps = (props: { link: T; active: boolean; }) => any; export interface FooterColumnsSlots { 'left'(props?: {}): any; 'default'(props?: {}): any; 'right'(props?: {}): any; 'link': SlotProps; 'link-leading': SlotProps; 'link-label': SlotProps; 'link-trailing': SlotProps; } declare const _default: (__VLS_props: NonNullable>["props"], __VLS_ctx?: __VLS_PrettifyLocal>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable>["expose"], __VLS_setup?: Promise<{ props: __VLS_PrettifyLocal & Omit<{} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, never>, never> & FooterColumnsProps & Partial<{}>> & import("vue").PublicProps; expose(exposed: import("vue").ShallowUnwrapRef<{}>): void; attrs: any; slots: FooterColumnsSlots; emit: {}; }>) => import("vue").VNode & { __ctx?: Awaited; }; export default _default; type __VLS_PrettifyLocal = { [K in keyof T]: T[K]; } & {};