import * as React from "react";
export interface CircularProgressProps {
/** Progress value (0-100) */
value: number;
/** Maximum value (defaults to 100) */
max?: number;
/** Size of the progress circle */
size?: "small" | "medium" | "large" | "xlarge";
/** Color variant */
color?: "brand" | "success" | "warning" | "error" | "neutral";
/** Label to display in the center */
label?: string;
/** Subtitle to display below the label */
subtitle?: string;
/** Show percentage text by default */
showPercentage?: boolean;
/** Thickness of the progress ring */
thickness?: number;
/** Custom className */
className?: string;
}
/**
* CircularProgress component for displaying progress or match percentages
*
* Used in iCaptur for:
* - Match percentages (98% Match)
* - Profile scores
* - Skill match indicators
* - Resume scores
*
* @example
* ```tsx
*
*
*
* ```
*/
export declare const CircularProgress: React.ForwardRefExoticComponent>;
//# sourceMappingURL=circular-progress.d.ts.map