import { CSSProperties } from 'react';
import * as echarts from 'echarts';
import { LineSeriesOption } from 'echarts';
type ECOption = echarts.ComposeOption<LineSeriesOption>;
export interface RadarProps {
    color?: Array<string>;
    category: Array<string | number>;
    series: Array<any>;
    loading?: boolean;
    smooth?: boolean;
    loadingType?: any;
    style?: CSSProperties;
    options?: ECOption;
}
export declare function ChartsRadar(props: RadarProps): JSX.Element;
export {};