declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            '& .SCLessonCommentActionsMenu-button': {
                color: any;
                '&:hover': {
                    backgroundColor: string;
                };
            };
        };
        popperRoot: ({ theme }: any) => {
            zIndex: number;
            '& .SCLessonCommentActionsMenu-popper-root': {
                overflow: string;
                filter: string;
                mt: number;
            };
            '& .SCLessonCommentActionsMenu-paper': {
                width: number;
                '& .SCLessonCommentActionsMenu-sub-item': {
                    '& .MuiListItemIcon-root': {
                        color: any;
                    };
                    '&:hover': {
                        backgroundColor: string;
                    };
                };
            };
        };
    };
};
export default Component;
