import { ElementRef, OnDestroy, OnChanges, SimpleChanges, OnInit, ChangeDetectorRef } from '@angular/core'; export declare class MiniAreaComponent implements OnDestroy, OnChanges, OnInit { private cd; color: string; borderColor: string; borderWidth: any; private _borderWidth; height: any; private _height; fit: any; private _fit; line: any; private _line; animate: any; private _animate; xAxis: any; yAxis: any; padding: number[]; data: Array<{ x: number; y: number; [key: string]: any; }>; node: ElementRef; chart: any; initFlag: boolean; constructor(cd: ChangeDetectorRef); ngOnInit(): void; install(): void; uninstall(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; }