import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; import { Scope } from "@effect/core/io/Scope/definition"; /** * Executes an effectful fold over the stream of values. Returns a scoped * value that represents the scope of the stream. * @tsplus static effect/core/stream/Stream.Aspects runFoldScopedEffect * @tsplus pipeable effect/core/stream/Stream runFoldScopedEffect * @tsplus location "@effect/core/stream/Stream/operations/runFoldScopedEffect" */ export declare function runFoldScopedEffect(s: S, f: (s: S, a: A) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runFoldScopedEffect.d.ts.map