import * as PropTypes from 'prop-types'; import * as React from 'react'; export declare type ProgressType = 'line' | 'circle' | 'dashboard'; export declare type ProgressSize = 'default' | 'small'; export interface ProgressProps { prefixCls?: string; className?: string; type?: ProgressType; percent?: number; successPercent?: number; format?: (percent?: number, successPercent?: number) => string; status?: 'success' | 'active' | 'exception'; showInfo?: boolean; strokeWidth?: number; strokeLinecap?: string; strokeColor?: string; trailColor?: string; width?: number; style?: React.CSSProperties; gapDegree?: number; gapPosition?: 'top' | 'bottom' | 'left' | 'right'; size?: ProgressSize; } export default class Progress extends React.Component { static defaultProps: { type: string; percent: number; showInfo: boolean; trailColor: string; prefixCls: string; size: string; }; static propTypes: { status: PropTypes.Requireable; type: PropTypes.Requireable; showInfo: PropTypes.Requireable; percent: PropTypes.Requireable; width: PropTypes.Requireable; strokeWidth: PropTypes.Requireable; strokeLinecap: PropTypes.Requireable; strokeColor: PropTypes.Requireable; trailColor: PropTypes.Requireable; format: PropTypes.Requireable<(...args: any[]) => any>; gapDegree: PropTypes.Requireable; default: PropTypes.Requireable; }; render(): JSX.Element; }