import { OnInit, OnChanges, OnDestroy, ElementRef, NgZone, SimpleChange, AfterViewInit } from '@angular/core'; import { EchartsLoaderService } from './echarts-loader.service'; export declare class EchartsComponent implements OnInit, OnChanges, OnDestroy, AfterViewInit { private ngZone; private loadService; options: any; initOpt: any; theme: any; redraw: any; outObject: any; set winStatus(v: any); echartsElem: ElementRef; private chart; constructor(ngZone: NgZone, loadService: EchartsLoaderService); ngOnInit(): void; ngAfterViewInit(): void; ngOnChanges(changes: { [propertyName: string]: SimpleChange; }): void; onResize(): void; ngOnDestroy(): void; }