declare const Component: {
    styleOverrides: {
        root: ({ theme }: any) => {};
        popoverRoot: ({ theme }: any) => {
            width: string;
            borderRadius: string;
            '& .SCLessonReleaseMenu-popover-contrast-color': {
                color: string;
            };
            '& .MuiPaper-root': {
                padding: any;
            };
            '& .SCLessonReleaseMenu-popover-content': {
                marginTop: any;
                '& .SCLessonReleaseMenu-popover-selection': {
                    display: string;
                    alignItems: string;
                    gap: any;
                    '& .MuiInputBase-root': {
                        width: string;
                        height: string;
                    };
                    '& .MuiRadio-root': {
                        padding: any;
                    };
                };
                '& .SCLessonReleaseMenu-popover-action': {
                    marginTop: any;
                    width: string;
                };
            };
        };
    };
};
export default Component;
