import { ElementRef, OnDestroy, OnChanges, NgZone, OnInit, ChangeDetectorRef } from '@angular/core';
export declare class G2TagCloudComponent implements OnDestroy, OnChanges, OnInit {
    private el;
    private cd;
    private zone;
    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, zone: NgZone);
    private initTagCloud();
    renderChart(): void;
    uninstall(): void;
    ngOnInit(): void;
    ngOnChanges(): void;
    ngOnDestroy(): void;
}
