import { ElementRef, OnDestroy, OnChanges, SimpleChanges, OnInit, SimpleChange, ChangeDetectorRef } from '@angular/core'; export declare class TagCloudComponent implements OnDestroy, OnChanges, OnInit { private el; private cd; color: string; height: any; private _height; padding: number; data: { name: string; value: number; [key: string]: any; }[]; autoLabel: any; private _autoLabel; node: ElementRef; chart: any; initFlag: boolean; constructor(el: ElementRef, cd: ChangeDetectorRef); private initTagCloud(); renderChart(): void; uninstall(): void; ngOnInit(): void; ngOnChanges(changes: { [P in keyof this]?: SimpleChange; } & SimpleChanges): void; ngOnDestroy(): void; }