declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCDefaultDrawerContent-no-results': {
                paddingLeft: any;
            };
            '& .SCDefaultDrawerContent-title': {
                paddingTop: any;
            };
            '& .SCDefaultDrawerContent-navigation': {
                paddingTop: any;
                paddingBottom: number;
                '& .MuiListItemButton-root': {
                    paddingLeft: any;
                    paddingRight: any;
                    '& .MuiListItemText-root .MuiTypography-root': {
                        fontWeight: number;
                    };
                };
                '& .MuiListItemIcon-root': {
                    minWidth: number;
                    marginRight: any;
                };
                '& .MuiIcon-root': {
                    fontSize: number;
                };
            };
        };
    };
};
export default Component;
