import { Stream } from "@effect/core/stream/Stream/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Executes a pure fold over the stream of values - reduces all elements in * the stream to a value of type `S`. * @tsplus static effect/core/stream/Stream.Aspects runFold * @tsplus pipeable effect/core/stream/Stream runFold * @tsplus location "@effect/core/stream/Stream/operations/runFold" */ export declare function runFold(s: S, f: (s: S, a: A) => S): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runFold.d.ts.map