declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .MuiList-root': {
                '& .Mui-selected': {
                    backgroundColor: any;
                    '&:hover, &:focus, &:active': {
                        backgroundColor: any;
                    };
                };
                '& .MuiButtonBase-root': {
                    paddingLeft: any;
                };
            };
            '& .SCCourseContentMenu-list-item': {
                '&:hover, &:focus, &:active': {
                    backgroundColor: string;
                };
            };
            '& .SCCourseContentMenu-list-item-icon': {
                minWidth: any;
                color: any;
            };
            '& .SCCourseContentMenu-item': {
                '& .MuiListItemText-primary': {
                    fontWeight: any;
                };
                '&:hover': {
                    backgroundColor: string;
                };
            };
            '& .SCCourseContentMenu-item-icon': {
                minWidth: any;
            };
            '& .SCCourseContentMenu-icon-complete': {
                color: any;
            };
            '& .SCCourseContentMenu-icon-incomplete': {
                color: any;
            };
        };
    };
};
export default Component;
