import React from 'react'; import { DrawerPlacement } from "./helper"; import { CSS } from "../config"; interface Props { className?: string; visible?: boolean; placement: DrawerPlacement; closeDrawer: () => void; closeButton?: boolean; css?: CSS; } export declare type DrawerWrapperProps = Props; declare const DrawerWrapper: React.FC>; export default DrawerWrapper;