import type { Predicate } from "../../../../Function/index.js"; import type * as M from "../../../../Managed/index.js"; import type * as C from "../core.js"; /** * Executes a pure fold over the stream of values. * Returns a Managed value that represents the scope of the stream. * Stops the fold early when the condition is not fulfilled. */ export declare function runReduceWhileManaged_(self: C.Stream, s: S, cont: Predicate, f: (s: S, a: A) => S): M.Managed; /** * Executes a pure fold over the stream of values. * Returns a Managed value that represents the scope of the stream. * Stops the fold early when the condition is not fulfilled. * * @ets_data_first runFoldWhileManaged_ */ export declare function runReduceWhileManaged(s: S, cont: Predicate, f: (s: S, a: A) => S): (self: C.Stream) => M.Managed; //# sourceMappingURL=runReduceWhileManaged.d.ts.map