import { default as React } from 'react'; import { SxProps } from '@mui/material'; type DrawerProps = { sx?: SxProps; anchor?: 'left' | 'right' | 'top' | 'bottom'; variant?: 'temporary' | 'persistent' | 'permanent'; children: React.ReactNode; open?: boolean; onClose?: () => void; keepMounted?: boolean; }; declare function DrawerComp(props: DrawerProps): import("react/jsx-runtime").JSX.Element; declare const Drawer: React.MemoExoticComponent; export { Drawer }; //# sourceMappingURL=Drawer.d.ts.map