declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            flexDirection: string;
            alignItems: string;
            gap: any;
            '&.SCCourseTypePopover-contrast-color': {
                color: any;
            };
            '& .SCCourseTypePopover-button': {
                padding: number;
                textDecoration: string;
                '&:hover': {
                    backgroundColor: string;
                    textDecoration: string;
                };
            };
        };
    };
};
export default Component;
