import type { AppConfig } from '@nuxt/schema'; import type { ComponentConfig } from '@nuxt/ui'; import theme from '#build/ui-pro/footer'; type Footer = ComponentConfig; export interface FooterProps { /** * The element or component this component should render as. * @defaultValue 'footer' */ as?: any; class?: any; ui?: Footer['slots']; } export interface FooterSlots { left(props?: {}): any; default(props?: {}): any; right(props?: {}): any; top(props?: {}): any; bottom(props?: {}): any; } declare const _default: __VLS_WithSlots & Readonly<{}>, { as: any; }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>, FooterSlots>; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };