import { type PieProps, type TooltipProps, type LegendProps } from "recharts"; import { type SSRSafeResponsiveContainerProps } from "./ssr-safe-container"; export interface PieChartConfig { [key: string]: { label?: string; color?: string; }; } interface PieChartProps extends Omit { data: Array<{ name: string; value: number; }>; config?: PieChartConfig; showTooltip?: boolean; showLegend?: boolean; innerRadius?: number | string; outerRadius?: number | string; startAngle?: number; endAngle?: number; tooltipProps?: TooltipProps, string | number>; legendProps?: LegendProps; pieProps?: Partial; centerLabel?: string; } export declare function PieChart({ data, config, className, showTooltip, showLegend, innerRadius, outerRadius, startAngle, endAngle, tooltipProps, legendProps, pieProps, height, width, aspect, centerLabel, }: PieChartProps): import("react/jsx-runtime").JSX.Element; export declare namespace PieChart { var displayName: string; } export {}; //# sourceMappingURL=pie-chart.d.ts.map