import * as React from 'react'; export default interface ProgressProps { strokeWidth?: number; trailWidth?: number; className?: string; percent?: number | number[]; strokeColor?: StrokeColorType; trailColor?: string; strokeLinecap?: StrokeLinecapType; prefixCls?: string; style?: React.CSSProperties; gapDegree?: number; gapPosition?: GapPositionType; transition?: string; children: React.ReactNode; } export type StrokeColorType = string | string[] | object; export type GapPositionType = 'top' | 'right' | 'bottom' | 'left'; export type StrokeLinecapType = 'round' | 'butt' | 'square';