declare const Component: {
    styleOverrides: {
        root: ({ theme }: {
            theme: any;
        }) => {
            '& .SCCourseCompletedDialog-wrapper': {
                alignItems: string;
                '& .SCCourseCompletedDialog-contrast-color': {
                    color: string;
                };
                '& .SCCourseCompletedDialog-title': {
                    marginTop: string;
                    marginBottom: string;
                };
                '& .SCCourseCompletedDialog-description-pt1': {
                    marginTop: string;
                };
                '& .SCCourseCompletedDialog-description-pt2': {
                    marginTop: string;
                    marginBottom: string;
                };
            };
        };
    };
};
export default Component;
