import React, { FC } from 'react'; export type IDrawer = { /** 抽屉弹出的位置 */ placement?: 'top' | 'bottom' | 'right' | 'left'; /** 控制抽屉是否打开的变量 */ visible: boolean; /** 抽屉的宽或者高 */ size?: number | string; /** 用户点击确定的回调函数 */ onOk?: () => void; /** 用户点击关闭的回调函数 */ onCancel?: () => void; /** 背景遮盖 */ dimBackground?: boolean; className?: string; children?: React.ReactNode; style?: React.CSSProperties; }; declare const Drawer: FC; export { Drawer };