import { EventEmitter } from '@angular/core'; import { ViewDimensions } from '../common/view-dimensions.helper'; import { ColorHelper } from '../common/color.helper'; import { BaseChartComponent } from '../common/base-chart.component'; export declare class AreaChartStackedComponent extends BaseChartComponent { legend: boolean; xAxis: any; yAxis: any; showXAxisLabel: any; showYAxisLabel: any; xAxisLabel: any; yAxisLabel: any; timeline: any; gradient: any; showGridLines: boolean; curve: any; activeEntries: any[]; schemeType: string; xAxisTickFormatting: any; yAxisTickFormatting: any; roundDomains: boolean; activate: EventEmitter; deactivate: EventEmitter; dims: ViewDimensions; scaleType: string; xDomain: any[]; xSet: any[]; yDomain: any[]; seriesDomain: any; xScale: any; yScale: any; transform: string; clipPathId: string; clipPath: string; colors: ColorHelper; margin: number[]; hoveredVertical: any; xAxisHeight: number; yAxisWidth: number; filteredDomain: any; legendOptions: any; timelineWidth: any; timelineHeight: number; timelineXScale: any; timelineYScale: any; timelineXDomain: any; timelineTransform: any; timelinePadding: number; update(): void; updateTimeline(): void; getXDomain(): any[]; getYDomain(): any[]; getSeriesDomain(): any[]; getXScale(domain: any, width: any): any; getYScale(domain: any, height: any): any; getScaleType(values: any): string; isDate(value: any): boolean; updateDomain(domain: any): void; updateHoveredVertical(item: any): void; hideCircles(): void; onClick(data: any, series: any): void; trackBy(index: any, item: any): string; setColors(): void; getLegendOptions(): { scaleType: string; colors: any; domain: any[]; }; updateYAxisWidth({width}: { width: any; }): void; updateXAxisHeight({height}: { height: any; }): void; onActivate(item: any): void; onDeactivate(item: any): void; deactivateAll(): void; }