import React, { MouseEvent } from 'react'; import { DrawerPlacement } from "./helper"; interface Props { visible?: boolean; keyboard?: boolean; disableBackdropClick?: boolean; onClose?: () => void; onContentClick?: (event: MouseEvent) => void; wrapClassName?: string; placement?: DrawerPlacement; } declare type NativeAttrs = Omit, keyof Props>; export declare type DrawerProps = Props & NativeAttrs; declare const Drawer: React.ForwardRefExoticComponent>; export default Drawer;