import { FunctionComponent, ReactNode } from 'react'; import { SwipeableDrawerProps } from '@mui/material'; export declare type AppDrawerProps = { children?: ReactNode; header?: ReactNode; footer?: ReactNode; } & SwipeableDrawerProps; export declare const AppDrawer: FunctionComponent;