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