import { ElementRef, OnInit, OnDestroy, OnChanges, NgZone } from '@angular/core';
export declare class G2GaugeComponent implements OnInit, OnDestroy, OnChanges {
    private zone;
    title: string;
    height: any;
    private _height;
    color: string;
    bgColor: string;
    format: Function;
    percent: any;
    private _percent;
    node: ElementRef;
    chart: any;
    initFlag: boolean;
    constructor(zone: NgZone);
    ngOnInit(): void;
    private createData();
    private draw();
    install(): void;
    uninstall(): void;
    ngOnChanges(): void;
    ngOnDestroy(): void;
}
