import { OnChanges, ViewContainerRef, EventEmitter, SimpleChanges } from '@angular/core'; import { TooltipService } from '../tooltip'; export declare class ChartComponent implements OnChanges { private vcr; private tooltipService; view: any; showLegend: boolean; legendOptions: any; data: any; legendData: any; legendType: any; colors: any; activeEntries: any[]; animations: boolean; legendLabelClick: EventEmitter; legendLabelActivate: EventEmitter; legendLabelDeactivate: EventEmitter; chartWidth: any; title: any; legendWidth: any; constructor(vcr: ViewContainerRef, tooltipService: TooltipService); ngOnChanges(changes: SimpleChanges): void; update(): void; getLegendType(): string; }