export interface RadarAxis { key: string; label: string; max?: number; } export interface RadarSeries { label: string; values: Record; color?: string; } interface RadarChartProps { axes?: RadarAxis[]; series?: RadarSeries[]; size?: number; levels?: number; showLabels?: boolean; showLegend?: boolean; fillOpacity?: number; class?: string; } declare const RadarChart: import("svelte").Component; type RadarChart = ReturnType; export default RadarChart;