import * as React from "react"; export interface CircleProgressProps { progress: number; showProgress?: boolean; bgColor?: string; progressColor?: string; size?: string; lineWidth?: string; roundedStroke?: boolean; responsive?: boolean; getText?: (progress: number) => string; } declare class CircleProgress extends React.Component { static displayName: string; static defaultProps: CircleProgressProps; render(): JSX.Element; private text; } export default CircleProgress;