import { EventEmitter, TemplateRef } from '@angular/core'; import { ColorHelper } from '../common/color.helper'; import { Series } from '../models/chart-data.model'; import { BaseChartComponent } from '../common/base-chart.component'; import { ViewDimensions, LegendPosition, ScaleType, LegendOptions } from '../common/types'; export declare class BarVerticalNormalizedComponent extends BaseChartComponent { legend: boolean; legendTitle: string; legendPosition: LegendPosition; xAxis: any; yAxis: any; showXAxisLabel: boolean; showYAxisLabel: boolean; xAxisLabel: string; yAxisLabel: string; tooltipDisabled: boolean; gradient: boolean; showGridLines: boolean; activeEntries: any[]; schemeType: ScaleType; trimXAxisTicks: boolean; trimYAxisTicks: boolean; rotateXAxisTicks: boolean; maxXAxisTickLength: number; maxYAxisTickLength: number; xAxisTickFormatting: any; yAxisTickFormatting: any; xAxisTicks: any[]; yAxisTicks: any[]; barPadding: number; roundDomains: boolean; noBarWhenZero: boolean; activate: EventEmitter; deactivate: EventEmitter; tooltipTemplate: TemplateRef; dims: ViewDimensions; groupDomain: string[]; innerDomain: string[]; valueDomain: [number, number]; xScale: any; yScale: any; transform: string; colors: ColorHelper; margin: number[]; xAxisHeight: number; yAxisWidth: number; legendOptions: LegendOptions; update(): void; getGroupDomain(): string[]; getInnerDomain(): string[]; getXScale(): any; getYScale(): any; groupTransform(group: Series): string; onClick(data: any, group?: Series): void; trackBy(index: number, item: Series): any; setColors(): void; getLegendOptions(): LegendOptions; updateYAxisWidth({ width }: { width: number; }): void; updateXAxisHeight({ height }: { height: number; }): void; onActivate(event: any, group: Series, fromLegend?: boolean): void; onDeactivate(event: any, group: Series, fromLegend?: boolean): void; }