import type { LiveChartPoint, Momentum } from "../types"; /** * Auto-detect momentum from recent data points. * Uses the full lookback window for threshold calculation * but only the last 5 points for active velocity. */ export declare function detectMomentum(points: LiveChartPoint[], lookback?: number, threshold?: number, endTime?: number): Momentum; //# sourceMappingURL=momentum.d.ts.map