import React from 'react'; import { strokeLineCaps } from './shared-props'; import { BaseProps } from '../_utils/props'; export interface CircleProps extends BaseProps { percent?: number; format?: (percent: number) => React.ReactNode; width?: number; strokeWidth?: number; strokeLinecap?: strokeLineCaps; strokeColor?: string; reverse?: boolean; prefixCls?: string; textStyle?: React.CSSProperties; children?: React.ReactNode; } declare const Circle: (props: CircleProps) => React.ReactElement React.ReactElement React.Component)> | null) | (new (props: any) => React.Component)>; export default Circle;