import { ElementRef, OnDestroy, OnChanges, SimpleChanges, TemplateRef, OnInit, ChangeDetectorRef } from '@angular/core'; export declare class G2BarComponent implements OnDestroy, OnChanges, OnInit { private el; private cd; _title: string; _titleTpl: TemplateRef; title: string | TemplateRef; color: string; height: any; private _height; padding: number[]; data: Array<{ x: any; y: any; [key: string]: any; }>; autoLabel: any; private _autoLabel; _cls: boolean; node: ElementRef; chart: any; initFlag: boolean; constructor(el: ElementRef, cd: ChangeDetectorRef); install(): void; uninstall(): void; ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; ngOnDestroy(): void; private autoHideXLabels; private scroll$; private installResizeEvent(); private uninstallResizeEvent(); resize(): void; }