import { type RadarProps, type PolarAngleAxisProps, type PolarRadiusAxisProps, type TooltipProps, type LegendProps } from "recharts"; import { type SSRSafeResponsiveContainerProps } from "./ssr-safe-container"; import type { ChartDataPoint } from "./chart-types"; export interface RadarChartConfig { [key: string]: { label?: string; color?: string; fillOpacity?: number; }; } interface RadarChartProps extends Omit { data: ChartDataPoint[]; config: RadarChartConfig; showGrid?: boolean; showTooltip?: boolean; showLegend?: boolean; angleAxisKey?: string; angleAxisProps?: Omit; radiusAxisProps?: Omit; tooltipProps?: TooltipProps, string | number>; legendProps?: LegendProps; radarProps?: Partial; } export declare function RadarChart({ data, config, className, showGrid, showTooltip, showLegend, angleAxisKey, angleAxisProps, radiusAxisProps, tooltipProps, legendProps, radarProps, height, width, aspect, }: RadarChartProps): import("react/jsx-runtime").JSX.Element; export declare namespace RadarChart { var displayName: string; } export {}; //# sourceMappingURL=radar-chart.d.ts.map