import { BoxProps } from '@mui/material';
import { CategoryProps } from '../Category';
export interface DefaultDrawerContentProps extends BoxProps {
    CategoryItemProps?: CategoryProps;
}
export default function DefaultDrawerContent(inProps: DefaultDrawerContentProps): JSX.Element;
