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