import { ModalProps, ModalSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Slots = ModalSlots; type __VLS_Props = ModalProps; type __VLS_ModelProps = { modelValue?: boolean; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, { handleClose: () => void; }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { close: () => any; "update:modelValue": (value: boolean) => any; opened: () => any; closed: () => any; confirm: (done: (status: boolean) => void) => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClose?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; onOpened?: (() => any) | undefined; onClosed?: (() => any) | undefined; onConfirm?: ((done: (status: boolean) => void) => any) | undefined; }>, { footer: boolean; header: boolean; mask: boolean; center: boolean; width: string | number; offset: number; destroyOnClose: boolean; to: string | HTMLElement; closeOnEsc: boolean; minWidth: number; minHeight: number; closable: boolean; closeOnOverlayClick: boolean; fullable: boolean; }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };