import { CT_AreaChart } from '../../../../openxml/ChartTypes'; import { Workbook } from '../../../Workbook'; export declare function fromAreaChart(workbook: Workbook, areaChart: CT_AreaChart): { categories: string[]; series: { name: string; type: string; stack: string | undefined; data: number[]; label: echarts.EChartOption.SeriesLine; areaStyle: {}; }[]; };