import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Whether to display the close button. * @default true */ closable?: boolean; /** * Whether to display the card footer. * Will be enabled automatically when the slot is passed. * @ignore */ footer?: boolean; /** * Whether to display the card header. * Will be enabled automatically when any header slot is passed. * @ignore */ header?: boolean; /** * Whether to display the dialog modal. * @default true */ open?: boolean; /** * When specified as `auto`, the dialog can be closed by clicking the backdrop. * @default 'auto' */ state?: 'auto' | 'manual'; }; 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: { root: HTMLDialogElement; }; rootEl: HTMLDialogElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { "update:open": (value: boolean) => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ "onUpdate:open"?: ((value: boolean) => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, { root: HTMLDialogElement; }, HTMLDialogElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };