import { Effect } from "@effect/core/io/Effect/definition"; import { Collection } from "@tsplus/stdlib/collections/Collection/definition"; /** * Reduces an `Collection>` to a single `Effect`, working * sequentially. * @tsplus static effect/core/io/Effect.Ops reduceAll * @tsplus location "@effect/core/io/Effect/operations/reduceAll" */ export declare function reduceAll(a: Effect, as: Collection>, f: (acc: A, a: A) => A): Effect; //# sourceMappingURL=reduceAll.d.ts.map