import { ElementRef, OnDestroy, OnChanges, SimpleChanges, NgZone } from '@angular/core';
export declare class G2MiniBarComponent implements OnDestroy, OnChanges {
    private zone;
    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;
    constructor(zone: NgZone);
    install(): void;
    uninstall(): void;
    ngOnChanges(changes: SimpleChanges): void;
    ngOnDestroy(): void;
}
