import * as React from 'react'; export declare type ProgressType = 'line' | 'circle' | 'dashboard'; export declare type ProgressSize = 'small' | 'medium'; export declare type ProgressStrokeLinecap = 'round' | 'square'; interface IProgressProps { type?: ProgressType; percent?: number; value?: string | number; max?: string | number; size?: ProgressSize; strokeLinecap?: ProgressStrokeLinecap; inforProgress?: React.ReactNode; } export declare class Progress extends React.Component { constructor(props: any); static defaultProps: { type: string; value: number; max: number; size: string; strokeLinecap: string; }; render(): JSX.Element; } export {};