export declare class BaseGaugeService { constructor(); getDefaultOption(): { series: { min: any; max: any; type: string; axisLine: { lineStyle: { width: number; color: any; }; }; pointer: { itemStyle: { color: string; }; }; axisTick: { distance: number; length: number; lineStyle: { color: string; width: number; }; }; splitLine: { distance: number; length: number; lineStyle: { color: string; width: number; }; }; axisLabel: { color: string; distance: number; fontSize: number; }; detail: { valueAnimation: boolean; formatter: any; color: string; fontSize: number; }; data: { value: any; }[]; }[]; }; setDatas(option: any, datas: any): void; }