import { Stream } from "@effect/core/stream/Stream/definition"; import { Channel } from "@effect/core/stream/Channel/definition/base"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Re-chunks the elements of the stream into chunks of `n` elements each. The * last chunk might contain less than `n` elements. * @tsplus static effect/core/stream/Stream.Aspects rechunk * @tsplus pipeable effect/core/stream/Stream rechunk * @tsplus location "@effect/core/stream/Stream/operations/rechunk" */ export declare function rechunk(n: number): (self: import("../definition").Stream) => import("../definition").Stream; //# sourceMappingURL=rechunk.d.ts.map