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