import { ElementRef, OnDestroy, OnChanges, SimpleChanges, OnInit, ChangeDetectorRef } from '@angular/core'; export declare class MiniBarComponent implements OnDestroy, OnChanges, OnInit { private cd; color: string; height: any; private _height; borderWidth: any; private _borderWidth; 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; }