import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Props = { /** * Whether to display the close button. * @default false * @ignore */ closable?: boolean; /** * When specified as `auto`, the dialog can be closed by clicking the backdrop. * @default 'auto' * @ignore */ state?: 'auto' | 'manual'; }; declare function __VLS_template(): { attrs: Partial<{}>; slots: Readonly<{ /** Title of the confirm. */ title?: (props: {}) => any; /** Content of the confirm. */ default?: (props: {}) => any; }> & { /** Title of the confirm. */ title?: (props: {}) => any; /** Content of the confirm. */ default?: (props: {}) => any; }; refs: {}; rootEl: HTMLDialogElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {} & { confirm: () => any; cancel: () => any; }, string, PublicProps, Readonly<__VLS_Props> & Readonly<{ onConfirm?: (() => any) | undefined; onCancel?: (() => any) | undefined; }>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDialogElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };