import type { ChartTheme } from '../themes/types.js'; export interface DonutChartProps { data: Record[]; label: string; value: string; width: number; height: number; theme?: ChartTheme; innerRadiusRatio?: number; } export declare function DonutChart({ data, label, value, width, height, theme, innerRadiusRatio, }: DonutChartProps): import("react/jsx-runtime").JSX.Element | null; //# sourceMappingURL=DonutChart.d.ts.map