import { type HTMLAttributes } from "react";
export interface DonutChartSegment {
label: string;
value: number;
color?: string;
}
export interface DonutChartProps extends Omit, "aria-label"> {
data: DonutChartSegment[];
size?: number;
strokeWidth?: number;
centerLabel?: string;
showLegend?: boolean;
/** Accessible label for the chart (required for accessibility) */
"aria-label": string;
}
export declare const DonutChart: import("react").ForwardRefExoticComponent>;