export interface CircularProgressClasses { /** Class name applied to the root element. */ root: string; /** Class name applied to the root element if `variant="determinate"`. */ determinate: string; /** Class name applied to the root element if `variant="indeterminate"`. */ indeterminate: string; /** Class name applied to the root element if `color="primary"`. */ colorPrimary: string; /** Class name applied to the root element if `color="error"`. */ colorError: string; /** Class name applied to the root element if `color="info"`. */ colorInfo: string; /** Class name applied to the root element if `color="warning"`. */ colorWarning: string; /** Class name applied to the root element if `color="success"`. */ colorSuccess: string; /** Class name applied to the svg element. */ svg: string; /** Class name applied to the `track` element. */ track: string; /** Class name applied to the `progress` element. */ progress: string; } export declare function getCircularProgressUtilityClass(slot: string): string; declare const circularProgressClasses: CircularProgressClasses; export default circularProgressClasses;