interface ICircleProgressProps {
    value: number;
    title: string;
    radius?: number;
    strokeWidth?: number;
    bgColor?: string;
    lineColor?: string;
    titleColorClassName?: string;
    isFire?: boolean;
}
export declare const CircleProgress: ({ value, title, radius, strokeWidth, bgColor, lineColor, titleColorClassName, isFire, }: ICircleProgressProps) => import("react").JSX.Element;
export {};
