import * as React from 'react'; export interface ProgressCircleProps { className?: string; percent?: number; prefixCls?: string; strokeColor?: string; strokeLinecap?: 'butt' | 'round' | 'square'; strokeWidth?: number; style?: React.CSSProperties; trailColor?: string; trailWidth?: number; gapPosition?: 'top' | 'bottom' | 'left' | 'right'; gapDegree?: number; } export declare class ProgressCircle extends React.Component { static defaultProps: ProgressCircleProps; private prevTimeStamp; path: SVGPathElement; constructor(props: ProgressCircleProps, context: any); componentDidUpdate(): void; private getPathStyles; render(): JSX.Element; }