import { OnInit, AfterViewInit } from '@angular/core'; import { EChartsService } from '../../providers/echarts/echarts.service'; interface ISerie { name: string; data: number[]; lineStyle?: { type: string; }; } export declare class LineComponent implements OnInit, AfterViewInit { private chart; _chartInstance: any; colors: string[]; series: ISerie[]; xLabels: string[] | number[]; private element; constructor(chart: EChartsService); ngAfterViewInit(): void; ngOnInit(): void; } export {};