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