import React from 'react'; import { DrawerProps } from '@mui/material/Drawer'; interface IDrawerProps extends DrawerProps { component?: string | JSX.Element; } declare const Drawer: React.ForwardRefExoticComponent & React.RefAttributes>; export default Drawer;