import { FC, PropsWithChildren } from 'react'; interface ICurtainProps { /** * css class */ className?: string; /** * 是否显示 * @default false */ visible?: boolean; /** * 关闭按钮位置 * @default bottom */ closeBtnPosition?: 'top' | 'top-left' | 'top-right' | 'bottom' | 'bottom-left' | 'bottom-right'; /** * 点击关闭按钮时的回调函数 */ onClose?: () => void; } declare const Curtain: FC>; export default Curtain;