import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Reduces the elements in the stream to a value of type `S`. Stops the fold * early when the condition is not fulfilled. * @tsplus static effect/core/stream/Stream.Aspects runFoldWhileEffect * @tsplus pipeable effect/core/stream/Stream runFoldWhileEffect * @tsplus location "@effect/core/stream/Stream/operations/runFoldWhileEffect" */ export declare function runFoldWhileEffect(s: S, cont: Predicate, f: (s: S, a: A) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runFoldWhileEffect.d.ts.map