/// import React from 'react'; export interface ProgressProps { prefixCls?: string; className?: string; type?: 'line' | 'circle' | 'dashboard'; percent?: number; format?: (percent: number) => string; status?: 'success' | 'active' | 'exception'; showInfo?: boolean; strokeWidth?: number; trailColor?: string; width?: number; style?: React.CSSProperties; gapDegree?: number; gapPosition?: 'top' | 'bottom' | 'left' | 'right'; } export default class Progress extends React.Component { static Line: any; static Circle: any; static defaultProps: { type: string; percent: number; showInfo: boolean; trailColor: string; prefixCls: string; }; static propTypes: { status: React.Requireable; type: React.Requireable; showInfo: React.Requireable; percent: React.Requireable; width: React.Requireable; strokeWidth: React.Requireable; trailColor: React.Requireable; format: React.Requireable; gapDegree: React.Requireable; }; render(): JSX.Element; }