import { EventEmitter, OnChanges, SimpleChanges } from '@angular/core'; import { ColorHelper } from '../common/color.helper'; import { Gradient } from '../common/types/gradient.interface'; import { ScaleType } from '../common/types/scale-type.enum'; import { AreaChartSeries } from '../models/chart-data.model'; export declare class AreaSeriesComponent implements OnChanges { data: AreaChartSeries; xScale: any; yScale: any; baseValue: any; colors: ColorHelper; scaleType: ScaleType; stacked: boolean; normalized: boolean; gradient: boolean; curve: any; activeEntries: any[]; animations: boolean; select: EventEmitter; opacity: number; path: string; startingPath: string; hasGradient: boolean; gradientStops: Gradient[]; ngOnChanges(changes: SimpleChanges): void; update(): void; updateGradient(): void; isActive(entry: any): boolean; isInactive(entry: any): boolean; }