import { type CSSProperties } from 'react'; export interface CircleProps { progress: number; animate?: boolean; animationDuration?: string; showPercentage?: boolean; showPercentageSymbol?: boolean; progressColor?: string; bgColor?: string; textColor?: string; size?: string; lineWidth?: string; percentSpacing?: number; textStyle?: CSSProperties; roundedStroke?: boolean; responsive?: boolean; onAnimationEnd?: () => void; } export declare const CircleProgress: ({ progress, animate, animationDuration, showPercentage, showPercentageSymbol, progressColor, bgColor, textColor, size, lineWidth, percentSpacing, textStyle, roundedStroke, responsive, onAnimationEnd, }: CircleProps) => import("react/jsx-runtime").JSX.Element;