export declare const seriesInit: { type: string; center: string[]; color: string; backgroundStyle: { color: string; }; outline: { itemStyle: { borderColor: string; shadowBlur: number; }; }; itemStyle: { opacity: number; shadowBlur: number; shadowColor: string; }; label: {}; data: never[]; }; /** * 组装echarts所需要的series * @param {传入数据} iChartOption * @returns */ export declare function setSeries(iChartOption: any): never[];