declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {
            [x: number]: {
                paddingBottom: any;
            };
            padding: any;
            height: string;
            display: string;
            flexDirection: string;
            justifyContent: string;
            '& .SCLessonEditForm-contrast-color': {
                color: string;
            };
            '& .SCLessonEditForm-form': {
                display: string;
                flexDirection: string;
            };
            '& .MuiFormLabel-root': {
                fontWeight: number;
                color: string;
                '& .Mui-focused': {
                    color: string;
                };
            };
            '& .SCLessonEditForm-settings': {
                marginTop: any;
            };
            '& .SCLessonEditForm-button': {
                alignSelf: string;
                marginBottom: any;
            };
        };
    };
};
export default Component;
