export default getConfig; /** 根据当前环境获取 pc 上配置,还是 H5上的配置 */ declare function getConfig(): { xAxis: { name: string; nameTextStyle: { align: string; }; axisLabel: { show: boolean; rotate: number; }; axisTick: { show: boolean; }; inverse: boolean; type: string; data: string[]; }; yAxis: { type: string; show: boolean; name: string; splitLine: { lineStyle: { width: number; type: string; }; }; axisLabel: { padding: number[]; }; min: any; max: any; }; series: { name: string; data: number[]; type: string; itemStyle: { color: string; }; showSymbol: boolean; label: { show: boolean; }; }[]; };