import { FC } from 'react';
import { ChartNestedDataShape } from '../common/data';
import { RadialAreaChartProps } from '../RadialAreaChart';
export interface RadarChartProps extends RadialAreaChartProps {
    /**
     * Data the chart will receive to render.
     *
     * @default []
     */
    data: ChartNestedDataShape[];
}
export declare const RadarChart: FC<Partial<RadarChartProps>>;
