import * as React from 'react'; import './style/circul.less'; export type StrokeLinecapType = 'round' | 'butt' | 'square'; export type GapPositionType = 'top' | 'right' | 'bottom' | 'left'; interface CirculProgressOptions { children: React.ReactNode; strokeWidth: number; value: number; color: string; trailWidth: number; trailColor: string; width: number; strokeLinecap: StrokeLinecapType; gapDegree: number; gapPosition: GapPositionType; animated: boolean; textStyle: React.CSSProperties; status: 'normal' | 'success' | 'exception'; } export type CirculProgressProps = Partial; declare const CirculProgress: React.FC; export default CirculProgress;