import React from 'react'; import { EChartOption } from 'echarts'; import { IChartData, IChartType, IChartUnit } from './utils'; export interface ChartProps { loading: boolean; data: IChartData[] | null; chartType?: IChartType; type?: IChartUnit; option?: EChartOption; chartCls?: string; } declare const _default: React.NamedExoticComponent; export default _default;