import * as T from "../../../../Effect/index.js"; import type * as C from "../core.js"; /** * Executes a pure fold over the stream of values - reduces all elements in the stream to a value of type `S`. */ export declare function runReduce_(self: C.Stream, s: S, f: (s: S, a: A) => S): T.Effect; /** * Executes a pure fold over the stream of values - reduces all elements in the stream to a value of type `S`. * * @ets_data_first runReduce_ */ export declare function runReduce(s: S, f: (s: S, a: A) => S): (self: C.Stream) => T.Effect; //# sourceMappingURL=runReduce.d.ts.map