import { CSSProperties } from 'vue'; export interface Props { width?: string | number; height?: string | number; title?: string; closable?: boolean; placement?: 'top' | 'right' | 'bottom' | 'left'; headerClass?: string; headerStyle?: CSSProperties; bodyClass?: string; bodyStyle?: CSSProperties; scrollbarProps?: object; extra?: string; footer?: string; footerClass?: string; footerStyle?: CSSProperties; destroyOnClose?: boolean; zIndex?: number; open?: boolean; } declare function __VLS_template(): { attrs: Partial<{}>; slots: { title?(_: {}): any; title?(_: {}): any; extra?(_: {}): any; extra?(_: {}): any; default?(_: {}): any; default?(_: {}): any; footer?(_: {}): any; footer?(_: {}): any; }; refs: { drawerRef: HTMLDivElement; }; rootEl: HTMLDivElement; }; type __VLS_TemplateResult = ReturnType; declare const __VLS_component: import('vue').DefineComponent void; "update:open": (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly & Readonly<{ onClose?: ((...args: any[]) => any) | undefined; "onUpdate:open"?: ((...args: any[]) => any) | undefined; }>, { footer: string; title: string; closable: boolean; width: string | number; height: string | number; placement: "top" | "right" | "bottom" | "left"; zIndex: number; open: boolean; scrollbarProps: object; extra: string; bodyStyle: CSSProperties; headerStyle: CSSProperties; bodyClass: string; destroyOnClose: boolean; headerClass: string; footerClass: string; footerStyle: CSSProperties; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, { drawerRef: HTMLDivElement; }, HTMLDivElement>; declare const _default: __VLS_WithTemplateSlots; export default _default; type __VLS_WithTemplateSlots = T & { new (): { $slots: S; }; };