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