import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Scope } from "@effect/core/io/Scope/definition"; /** * Like `Stream.forEach`, but returns an `Effect` so the finalization * order can be controlled. * @tsplus static effect/core/stream/Stream.Aspects runForEachScoped * @tsplus pipeable effect/core/stream/Stream runForEachScoped * @tsplus location "@effect/core/stream/Stream/operations/runForEachScoped" */ export declare function runForEachScoped(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runForEachScoped.d.ts.map