import { DrawerProps, DrawerSlots } from './types'; import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; type __VLS_Slots = DrawerSlots; type __VLS_Props = DrawerProps; type __VLS_ModelProps = { modelValue?: boolean; }; type __VLS_PublicProps = __VLS_Props & __VLS_ModelProps; declare const __VLS_base: DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { close: () => any; "update:modelValue": (value: boolean) => any; open: () => any; esc: () => any; maskClick: () => any; opened: () => any; closed: () => any; }, string, PublicProps, Readonly<__VLS_PublicProps> & Readonly<{ onClose?: (() => any) | undefined; "onUpdate:modelValue"?: ((value: boolean) => any) | undefined; onOpen?: (() => any) | undefined; onEsc?: (() => any) | undefined; onMaskClick?: (() => any) | undefined; onOpened?: (() => any) | undefined; onClosed?: (() => any) | undefined; }>, { mask: boolean; height: string | number; width: string | number; placement: "top" | "bottom" | "left" | "right"; to: string | HTMLElement; maxHeight: string | number; closeOnEsc: boolean; closeOnMask: boolean; maxWidth: string | number; minWidth: string | number; minHeight: string | number; closable: 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; }; };