import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; import { Predicate } from "@tsplus/stdlib/data/Predicate"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Folds over the elements in this chunk from the left. * Stops the fold early when the condition is not fulfilled. * @tsplus static effect/core/io/Effect.Ops reduceWhile * @tsplus location "@effect/core/io/Effect/operations/reduceWhile" */ export declare function reduceWhile(self: Collection, s: S, p: Predicate, f: (s: S, a: A) => Effect): Effect; //# sourceMappingURL=reduceWhile.d.ts.map