import type { Transducer } from "@thi.ng/transducers"; /** * @remarks * Reference: * https://en.wikipedia.org/wiki/Momentum_(technical_analysis) * * Note: the number of results will be `period` less than the number * of processed inputs. * * @param period - */ export declare function momentum(period: number): Transducer; export declare function momentum(period: number, src: Iterable): IterableIterator; //# sourceMappingURL=momentum.d.ts.map