import { HTMLAttributes } from 'react';
export declare type IProgressType = 'line' | 'circle';
export declare type IProgressStatus = 'normal' | 'success' | 'exception';
export declare type IProgressFormatFn = (precent: number) => React.ReactNode;
declare type StrokeLinecap = 'square' | 'round';
export interface ICommonProgressProps {
    percent?: number;
    showInfo?: boolean;
    strokeWidth?: number;
    width?: number;
    bgColor?: string;
    strokeLinecap?: StrokeLinecap;
    format?: IProgressFormatFn;
}
export interface IProgressProps extends ICommonProgressProps, HTMLAttributes<HTMLDivElement> {
    type?: IProgressType;
    status?: IProgressStatus;
    normalColor?: string;
    successColor?: string;
    exceptionColor?: string;
    style?: React.CSSProperties;
}
export interface IProgressInstanceProps extends ICommonProgressProps {
    color: string;
    state: IProgressStatus;
}
export interface IProgressInfoProps {
    type: IProgressType;
    percent: number;
    format: IProgressFormatFn;
    state: IProgressStatus;
    color?: string;
}
export {};
