export declare const seriesInit: { type: string; gridSize: number; shape: string; sizeRange: number[]; rotationRange: number[]; rotationStep: number; top: string; left: string; right: null; bottom: null; width: string; height: string; drawOutOfBound: boolean; layoutAnimation: boolean; textStyle: { color(): string; }; emphasis: { textStyle: { textShadowBlur: number; textShadowOffsetY: number; textShadowOffsetX: number; textShadowColor: string; }; }; data: never[]; }; /** * 组装echarts所需要的series * @param {主题} theme * @param {数据} data * @returns */ declare function handleSeries(params: any): never[]; export default handleSeries;