import { OwnerStateThemeType } from './';
declare const CircularProgress: () => {
    MuiCircularProgress: {
        styleOverrides: {
            colorPrimary: ({ theme }: OwnerStateThemeType) => {
                color: string;
            };
            colorSecondary: ({ theme }: OwnerStateThemeType) => {
                color: string;
            };
        };
    };
};
export default CircularProgress;
