import * as C from "../core.js"; /** * Re-chunks the elements of the stream into chunks of * `n` elements each. * The last chunk might contain less than `n` elements */ export declare function rechunk_(self: C.Stream, n: number): C.Stream; /** * Re-chunks the elements of the stream into chunks of * `n` elements each. * The last chunk might contain less than `n` elements * * @ets_data_first rechunk_ */ export declare function rechunk(n: number): (self: C.Stream) => C.Stream; //# sourceMappingURL=rechunk.d.ts.map