import React from "react"; import { RadarChartData } from "./types"; export interface RadarChartProps { data: T; categoryKey: keyof T[number]; theme?: "ocean" | "orchid" | "emerald" | "sunset" | "spectrum" | "vivid"; customPalette?: string[]; variant?: "line" | "area"; grid?: boolean; legend?: boolean; strokeWidth?: number; areaOpacity?: number; icons?: Partial>; isAnimationActive?: boolean; height?: number; width?: number; } export declare const RadarChart: React.MemoExoticComponent<(({ data, categoryKey, theme, customPalette, variant, grid, legend, strokeWidth, areaOpacity, icons, isAnimationActive, height, width, }: RadarChartProps) => import("react/jsx-runtime").JSX.Element)>; //# sourceMappingURL=RadarChart.d.ts.map