import { Stream } from "@effect/core/stream/Stream/definition"; import { Chunk } from "@tsplus/stdlib/collections/Chunk/definition"; /** * Partitions the stream with specified chunkSize * @param chunkSize The size of the chunks to emit. * @tsplus static effect/core/stream/Stream.Aspects grouped * @tsplus pipeable effect/core/stream/Stream grouped * @tsplus location "@effect/core/stream/Stream/operations/grouped" */ export declare function grouped(chunkSize: number): (self: import("../definition").Stream) => import("../definition").Stream>; //# sourceMappingURL=grouped.d.ts.map