import type { PrototypeStruct } from '../index.js';
interface Chunks<T> {
    chunks(chunkSize: number): T[] | T[][];
}
export declare const chunks: PrototypeStruct;
declare global {
    interface Array<T> extends Chunks<T> {
    }
}
export {};
//# sourceMappingURL=chunks.d.ts.map