import React from 'react';
interface ProgressProps {
    /**设置是进度条还是进度圈*/
    type: 'line' | 'circle';
    /**设置进度圈大小，进度条长度*/
    width?: number;
    /**颜色 支持渐变色*/
    color?: string | [string, string];
    /**背景色 */
    bgColor?: string;
    /**设置进度圈外环宽度，进度条的高*/
    strokeWidth?: number;
    /**值*/
    value?: number;
    /**是否显示值文本 */
    showLabel?: boolean;
    /**自定义标签 */
    label?: React.ReactNode;
    /**是否显示单位 */
    showUnit?: boolean;
    /**自定义文本位置 */
    top?: string;
    /**自定义文本位置 */
    left?: string;
}
declare const Progress: React.FC<ProgressProps>;
export default Progress;
