import { default as React } from 'react';
export interface ProgressCircleProps {
/** Progress value (0-100) */
value: number;
/** Circle size in pixels */
size?: number;
/** Stroke width */
strokeWidth?: number;
/** Show percentage text */
showValue?: boolean;
/** Custom label */
label?: string;
/** Color variant */
variant?: 'primary' | 'success' | 'warning' | 'danger';
/** Custom color */
color?: string;
/** Background track color */
trackColor?: string;
/** Additional className */
className?: string;
}
/**
* ProgressCircle Component
*
* Circular progress indicator with customizable size and colors.
* Displays percentage or custom label in the center.
*
* @example
* ```tsx
*
* ```
*
* @example
* ```tsx
*
* ```
*/
export declare const ProgressCircle: React.FC;
//# sourceMappingURL=progress-circle.d.ts.map