import type { Transducer } from "@thi.ng/transducers"; /** * Computes Donchian channel, i.e. min/max values for sliding window. * * https://en.wikipedia.org/wiki/Donchian_channel * * Note: the number of results will be `period-1` less than the number of * processed inputs. * * @param period - */ export declare function donchian(period: number): Transducer; export declare function donchian(period: number, src: Iterable): IterableIterator<[number, number]>; //# sourceMappingURL=donchian.d.ts.map