import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; 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 runForEachChunk * @tsplus pipeable effect/core/stream/Stream runForEachChunk * @tsplus location "@effect/core/stream/Stream/operations/runForEachChunk" */ export declare function runForEachChunk(f: (chunk: Chunk) => Effect): (self: import("../definition").Stream) => import("../../../io/Effect").Effect; //# sourceMappingURL=runForEachChunk.d.ts.map