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