import * as i0 from '@angular/core'; import { OnChanges, Type } from '@angular/core'; import { TdChartSeriesScatterComponent, ITdScatterSeries } from '@covalent/echarts/scatter'; type TdRegressionType = 'linear' | 'exponential' | 'logarithmic' | 'polynomial'; interface ITdRegressionSeries extends ITdScatterSeries { data?: number[][]; regressionType?: TdRegressionType; polinomialOrder?: number; } declare class TdChartSeriesRegressionComponent extends TdChartSeriesScatterComponent implements ITdRegressionSeries, OnChanges { data?: number[][]; regressionType?: TdRegressionType; polinomialOrder?: number; ngOnChanges(): void; getConfig(): any; private setOptions; private render; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; } declare const REGRESSION_MODULE_COMPONENTS: Type[]; /** * @deprecated This module is deprecated and will be removed in future versions. * Please migrate to using standalone components as soon as possible. */ declare class CovalentRegressionEchartsModule { static ɵfac: i0.ɵɵFactoryDeclaration; static ɵmod: i0.ɵɵNgModuleDeclaration; static ɵinj: i0.ɵɵInjectorDeclaration; } export { CovalentRegressionEchartsModule, REGRESSION_MODULE_COMPONENTS, TdChartSeriesRegressionComponent }; export type { ITdRegressionSeries, TdRegressionType };