import * as React from 'react';
import { AsProp, ChildrenProp, HTMLAttributes } from '../../types';
export interface CircularProgressProps extends HTMLAttributes, AsProp, ChildrenProp {
    angle?: number;
    color?: string;
    isCapRound?: boolean;
    isIndeterminate?: boolean;
    max?: number;
    min?: number;
    size?: string;
    thickness?: number;
    trackColor?: string;
    value?: number;
}
export declare const CircularProgress: React.ForwardRefExoticComponent<CircularProgressProps & React.RefAttributes<HTMLDivElement>>;
