import { TechnicalIndicator } from '../../base/Indicator.js'; import type { LinearRegressionResult } from '../../util/math/getLinearRegression.js'; export declare class LinearRegression extends TechnicalIndicator { readonly prices: number[]; readonly interval: number; constructor(interval: number); getRequiredInputs(): number; update(price: number, replace: boolean): LinearRegressionResult | null; get isStable(): boolean; }