/// <reference types="react" />
import type { ProgressProps } from "./progress";
import "./style.scss";
interface CircleProps extends ProgressProps {
    /**
     * 圆弧的宽度
     * @default  18
     */
    strokeWidth?: number;
    /**
     * 圆弧末尾使用的形状
     * @default butt
     */
    strokeLinecap?: "butt" | "round";
    /**
     * 圆环大小
     * @default 120
     */
    size?: number;
}
declare function CircleCopy(props: CircleProps): JSX.Element;
export default CircleCopy;
