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.runForEachWhile`, but returns a scoped `Effect` so the * finalization order can be controlled. * @tsplus static effect/core/stream/Stream.Aspects runForEachWhileScoped * @tsplus pipeable effect/core/stream/Stream runForEachWhileScoped * @tsplus location "@effect/core/stream/Stream/operations/runForEachWhileScoped" */ export declare function runForEachWhileScoped(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runForEachWhileScoped.d.ts.map