export declare type IAccumulationData = { categoryCode: string; color: string; columnId: string; coordinateVOList: { date: string; issueCount: number; }[]; name: string; }; export declare function transformAccumulationData(accumulationData: IAccumulationData[]): { legendData: { icon: string; name: string; }[]; newxAxis: string[]; legendSeries: { name: string; type: string; stack: boolean; areaStyle: { normal: { color: string; opacity: number; }; }; lineStyle: { normal: { color: string; }; }; itemStyle: { normal: { color: string; }; }; data: number[]; symbol: string; }[]; };