import * as T from "../../../../Effect/index.js"; import type { Predicate } from "../../../../Function/index.js"; import type * as C from "../core.js"; /** * Executes an effectful fold over the stream of values. * Stops the fold early when the condition is not fulfilled. */ export declare function runReduceWhileEffect_(self: C.Stream, s: S, cont: Predicate, f: (s: S, a: A) => T.Effect): T.Effect; /** * Executes an effectful fold over the stream of values. * Stops the fold early when the condition is not fulfilled. * * @ets_data_first runReduceWhileEffect_ */ export declare function runReduceWhileEffect(s: S, cont: Predicate, f: (s: S, a: A) => T.Effect): (self: C.Stream) => T.Effect; //# sourceMappingURL=runReduceWhileEffect.d.ts.map