import type * as C from "../core.js"; /** * Statefully maps over the elements of this stream to produce all intermediate results. * * See also `Stream#scan`. */ export declare function scanReduce_(self: C.Stream, f: (a1: A1, a: A) => A1): C.Stream; /** * Statefully maps over the elements of this stream to produce all intermediate results. * * See also `Stream#scan`. * * @ets_data_first scanReduce_ */ export declare function scanReduce(f: (a1: A1, a: A) => A1): (self: C.Stream) => C.Stream; //# sourceMappingURL=scanReduce.d.ts.map