import type { FC } from 'react'; import React from 'react'; import './index.less'; interface DrawerProps { width?: number | string; visible: boolean; onClose?: () => void; placement?: 'right' | 'left'; style?: React.CSSProperties; className?: string; customHeader?: React.ReactNode; customFooter?: React.ReactNode; title?: React.ReactNode; destoryOnClosed?: boolean; bordered?: boolean; closeWhenClickAway?: boolean; } declare const Drawer: FC; export default Drawer;