import type * as T from "../../../../Effect/index.js"; import type { Predicate } from "../../../../Function/index.js"; import type * as M from "../../../../Managed/index.js"; import type * as C from "../core.js"; /** * Executes an effectful 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 runReduceWhileManagedEffect_(self: C.Stream, s: S, cont: Predicate, f: (s: S, a: A) => T.Effect): M.Managed; /** * Executes an effectful 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 runReduceWhileManagedEffect(s: S, cont: Predicate, f: (s: S, a: A) => T.Effect): (self: C.Stream) => M.Managed; //# sourceMappingURL=runReduceWhileManagedEffect.d.ts.map