import * as React from 'react'; import type { PortalProps } from '@rc-component/portal'; import type { DrawerPopupProps } from './DrawerPopup'; export type Placement = 'left' | 'top' | 'right' | 'bottom'; export interface DrawerProps extends Omit { prefixCls?: string; open?: boolean; onClose?: (e: React.MouseEvent | React.KeyboardEvent) => void; destroyOnClose?: boolean; getContainer?: PortalProps['getContainer']; } declare const Drawer: React.FC; export default Drawer;