import React from 'react'; import { DrawerProps } from '@mui/material/Drawer'; export interface CustomDrawerProps { drawerWidth?: number; floatEndsAt?: 'xs' | 'sm' | 'md' | 'lg' | 'xl'; } export declare const Drawer: React.FC>>;