import { default as React } from 'react'; export interface PieChartDataPoint { label: string; value: number; color?: string; } export interface PieChartProps { /** Chart data */ data: PieChartDataPoint[]; /** Chart variant */ variant?: 'pie' | 'donut'; /** Show legend */ showLegend?: boolean; /** Show percentages */ showPercentages?: boolean; /** Chart size */ size?: number; /** Donut hole size (percentage) */ donutHoleSize?: number; /** Additional className */ className?: string; } /** * PieChart Component * * Pie or donut chart for displaying proportional data. * Automatically calculates percentages and angles. * * @example * ```tsx * * ``` */ export declare const PieChart: React.FC; //# sourceMappingURL=pie-chart.d.ts.map