/// <reference types="react" />
import { ProgressProps } from './Props';
declare function Circle(props: ProgressProps): JSX.Element;
declare namespace Circle {
    var defaultProps: {
        strokeLinecap: string;
        strokeWidth: number;
        size: number;
        value: number;
    };
}
export default Circle;
