import { LingXiFC } from '@lingxiteam/types'; import { MyReactEChartsProps } from './PropsType'; export interface ColorStopMap { type: string; x: number; y: number; x2: number; y2: number; colorStops: any[]; } export interface SeriesMap { data?: any[]; type?: string; areaStyle?: { showColor?: boolean; color0?: string; color1?: string; color?: ColorStopMap; }; label?: { formatter: any; }; lineStyle?: { color: string; }; itemStyle?: { color: string; }; radius?: any; center?: any; } declare const ReactECharts: LingXiFC; export default ReactECharts;