import type { CSSProperties, PropType, TransitionProps } from 'vue'; export type IPlacement = 'left' | 'top' | 'right' | 'bottom'; type ILevelMove = number | [number, number]; declare function drawerProps(): { forceRender: { type: BooleanConstructor; default: any; }; getContainer: any; prefixCls: StringConstructor; width: any; height: any; style: { type: PropType; default: CSSProperties; }; class: StringConstructor; rootClassName: StringConstructor; rootStyle: { type: PropType; default: CSSProperties; }; placement: { type: PropType; }; wrapperClassName: StringConstructor; level: { type: PropType; }; levelMove: { type: PropType ILevelMove)>; }; duration: StringConstructor; ease: StringConstructor; showMask: { type: BooleanConstructor; default: any; }; maskClosable: { type: BooleanConstructor; default: any; }; maskStyle: { type: PropType; default: CSSProperties; }; afterVisibleChange: FunctionConstructor; keyboard: { type: BooleanConstructor; default: any; }; contentWrapperStyle: { type: PropType; default: CSSProperties[]; }; autofocus: { type: BooleanConstructor; default: any; }; open: { type: BooleanConstructor; default: any; }; motion: { type: PropType<(placement: IPlacement) => TransitionProps>; default: (placement: IPlacement) => TransitionProps; }; maskMotion: { type: PropType; default: TransitionProps; }; }; declare function drawerChildProps(): { getContainer: FunctionConstructor; getOpenCount: PropType<() => number>; scrollLocker: any; inline: BooleanConstructor; prefixCls: StringConstructor; width: any; height: any; style: { type: PropType; default: CSSProperties; }; class: StringConstructor; rootClassName: StringConstructor; rootStyle: { type: PropType; default: CSSProperties; }; placement: { type: PropType; }; wrapperClassName: StringConstructor; level: { type: PropType; }; levelMove: { type: PropType ILevelMove)>; }; duration: StringConstructor; ease: StringConstructor; showMask: { type: BooleanConstructor; default: any; }; maskClosable: { type: BooleanConstructor; default: any; }; maskStyle: { type: PropType; default: CSSProperties; }; afterVisibleChange: FunctionConstructor; keyboard: { type: BooleanConstructor; default: any; }; contentWrapperStyle: { type: PropType; default: CSSProperties[]; }; autofocus: { type: BooleanConstructor; default: any; }; open: { type: BooleanConstructor; default: any; }; motion: { type: PropType<(placement: IPlacement) => TransitionProps>; default: (placement: IPlacement) => TransitionProps; }; maskMotion: { type: PropType; default: TransitionProps; }; }; export { drawerChildProps, drawerProps };