declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            [x: number]: {
                width: string;
                flexShrink: number;
            } | {
                width: string;
                flexShrink?: undefined;
            };
            '& .SCLessonDrawer-contrast-color': {
                color: string;
            };
            '& h4': {
                fontWeight: any;
            };
            '& .MuiDrawer-paper': {
                [x: number]: {
                    width: string;
                };
                width: string;
                backgroundColor: any;
            };
            '& .SCLessonDrawer-header': {
                [x: number]: {
                    minHeight: string;
                };
                display: string;
                padding: any;
            };
            '& .SCLessonDrawer-header-content': {
                display: string;
                alignItems: string;
                justifyContent: string;
            };
            '& .SCLessonDrawer-header-edit': {
                justifyContent: string;
            };
            '& .SCScrollContainer-root:hover': {
                '& .Mui-disabled': {
                    opacity: string;
                };
            };
        };
    };
};
export default Component;
