import * as T from "../../../../Effect/index.js"; import type { Predicate } from "../../../../Function/index.js"; import type * as C from "../core.js"; /** * Reduces the elements in the stream to a value of type `S`. * Stops the fold early when the condition is not fulfilled. */ export declare function runReduceWhile_(self: C.Stream, s: S, cont: Predicate, f: (s: S, a: A) => S): T.Effect; /** * Reduces the elements in the stream to a value of type `S`. * Stops the fold early when the condition is not fulfilled. * * @ets_data_first runReduceWhile_ */ export declare function runReduceWhile(s: S, cont: Predicate, f: (s: S, a: A) => S): (self: C.Stream) => T.Effect; //# sourceMappingURL=runReduceWhile.d.ts.map