import { Effect } from "@effect/core/io/Effect/definition"; import { Stream } from "@effect/core/stream/Stream/definition"; /** * Consumes all elements of the stream, passing them to the specified * callback. * @tsplus static effect/core/stream/Stream.Aspects runForEach * @tsplus pipeable effect/core/stream/Stream runForEach * @tsplus location "@effect/core/stream/Stream/operations/runForEach" */ export declare function runForEach(f: (a: A) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runForEach.d.ts.map