import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; export declare class SeriesHorizontal implements OnChanges { bars: any; x: any; y: any; dims: any; type: string; series: any; xScale: any; yScale: any; colors: any; tooltipDisabled: boolean; gradient: boolean; activeEntries: any[]; seriesName: string; select: EventEmitter<{}>; activate: EventEmitter<{}>; deactivate: EventEmitter<{}>; ngOnChanges(changes: SimpleChanges): void; update(): void; isActive(entry: any): boolean; trackBy(index: any, bar: any): any; click(data: any): void; }