import { FC } from 'react'; import { ChartNestedDataShape } from '../common/data'; import { RadialAreaChartProps } from '../RadialAreaChart'; export interface RadarChartProps extends RadialAreaChartProps { data: ChartNestedDataShape[]; } export declare const RadarChart: FC>;