importReactfrom'react';
import { DrawerProps } from'./Drawer.types';
/**
* Drawers are containers used for navigation or selections on smaller screen
*/declareconstDrawer: React.ForwardRefExoticComponent<DrawerProps & React.RefAttributes<HTMLDivElement>>;
exportdefaultDrawer;