export type PieChartDatum = { name: string; value: number; color?: string; }; export type PieChartProps = { data: PieChartDatum[]; variant?: 'pie' | 'donut'; height?: number; fontSizeLabelPie?: number; fontSizeTitleDonut?: number; fontSizeSubtitleDonut?: number; innerRadius?: number | string; outerRadius?: number | string; paddingAngle?: number; hideLegends?: boolean; showLabels?: boolean; formatDonutTitle?: (label: string) => string; formatDonutValue?: (value: number) => string; formatDonutPercent?: (percent: number) => string; formatValue?: (value: number) => string; formatLabel?: (label: string) => string; }; export declare const PieChart: ({ data, variant, height, fontSizeLabelPie, fontSizeTitleDonut, fontSizeSubtitleDonut, innerRadius, outerRadius, paddingAngle, hideLegends, showLabels, formatValue, formatLabel, formatDonutPercent, formatDonutTitle, formatDonutValue, }: PieChartProps) => import("react/jsx-runtime").JSX.Element;