import { type ExtractPropTypes, PropType, SlotsType } from 'vue'; import { type FormDialogWidth, type FormDialogSlots } from '../form-dialog'; export declare const formDrawerProps: { size: { type: PropType; default: string; }; closeOnClickModal: { type: BooleanConstructor; default: boolean; }; closeOnPressEscape: { type: BooleanConstructor; default: boolean; }; confirmText: { type: StringConstructor; default: string; }; cancelText: { type: StringConstructor; default: string; }; confirmProps: { type: PropType; }; cancelProps: { type: PropType; }; hideConfirm: { type: BooleanConstructor; }; hideCancel: { type: BooleanConstructor; }; direction: import("element-plus/es/utils/index.mjs").EpPropFinalized; resizable: BooleanConstructor; withHeader: import("element-plus/es/utils/index.mjs").EpPropFinalized; modalFade: import("element-plus/es/utils/index.mjs").EpPropFinalized; headerAriaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized; appendToBody: BooleanConstructor; appendTo: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>) | ((new (...args: any[]) => string | HTMLElement) | (() => import("element-plus/es/utils/index.mjs").EpPropMergeType<(new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement) | ((new (...args: any[]) => string | HTMLElement) | (() => string | HTMLElement))[], unknown, unknown>))[], unknown, unknown, "body", boolean>; beforeClose: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; destroyOnClose: BooleanConstructor; lockScroll: import("element-plus/es/utils/index.mjs").EpPropFinalized; modal: import("element-plus/es/utils/index.mjs").EpPropFinalized; modalPenetrable: BooleanConstructor; openDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized; closeDelay: import("element-plus/es/utils/index.mjs").EpPropFinalized; top: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; modelValue: BooleanConstructor; modalClass: StringConstructor; headerClass: StringConstructor; bodyClass: StringConstructor; footerClass: StringConstructor; width: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; zIndex: { readonly type: import("vue").PropType; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; trapFocus: BooleanConstructor; transition: import("element-plus/es/utils/index.mjs").EpPropFinalized<(new (...args: any[]) => string | import("vue").TransitionProps) | (() => import("element-plus").DialogTransition) | ((new (...args: any[]) => string | import("vue").TransitionProps) | (() => import("element-plus").DialogTransition))[], unknown, unknown, undefined, boolean>; center: BooleanConstructor; alignCenter: import("element-plus/es/utils/index.mjs").EpPropFinalized; closeIcon: { readonly type: import("vue").PropType (string | import("vue").Component) & {}) | (() => string | import("vue").Component) | ((new (...args: any[]) => (string | import("vue").Component) & {}) | (() => string | import("vue").Component))[], unknown, unknown>>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; draggable: import("element-plus/es/utils/index.mjs").EpPropFinalized; overflow: import("element-plus/es/utils/index.mjs").EpPropFinalized; fullscreen: BooleanConstructor; showClose: import("element-plus/es/utils/index.mjs").EpPropFinalized; title: import("element-plus/es/utils/index.mjs").EpPropFinalized; ariaLevel: import("element-plus/es/utils/index.mjs").EpPropFinalized; }; export type FormDrawerProps = ExtractPropTypes; export interface FormDrawerSlots extends FormDialogSlots { } export declare const formDrawerSlots: SlotsType; export declare const formDrawerEmits: { 'resize-start': (evt: MouseEvent, size: number) => boolean; resize: (evt: MouseEvent, size: number) => boolean; 'resize-end': (evt: MouseEvent, size: number) => boolean; open: () => boolean; opened: () => boolean; close: () => boolean; closed: () => boolean; "update:modelValue": (value: boolean) => boolean; openAutoFocus: () => boolean; closeAutoFocus: () => boolean; }; export type FormDrawerEmits = typeof formDrawerEmits; export interface ElDrawerExpose { handleClose: () => void; } export interface FormDrawerExpose extends ElDrawerExpose { } export declare const elFormDrawerExposeKeys: string[];