import { ProgressProps } from './interface';
declare const CircleProgress: (props: ProgressProps & {
    prefixCls?: string;
    width: number;
    pathStrokeWidth?: number;
    pathStrokeColor?: string;
}) => JSX.Element;
export default CircleProgress;
