import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Which side of the page the drawer will show on. * @default 'right' */ side?: 'left' | 'right' | 'top' | 'bottom'; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** @ignore */ title?: (props: {}) => any; /** @ignore */ default?: (props: {}) => any; /** @ignore */ footer?: (props: {}) => any; }> & { /** @ignore */ title?: (props: {}) => any; /** @ignore */ default?: (props: {}) => any; /** @ignore */ footer?: (props: {}) => any; }; refs: {}; rootEl: HTMLDialogElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDialogElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };