export declare const chunkIntoBatches: (items: Item[], chunkSize: number) => Item[][]; export type ExecuteBatches = (batches: readonly Batch[], handler: (batch: Batch, index: number) => Promise) => Promise; export declare const executeBatchesSequentially: (batches: readonly Batch[], handler: (batch: Batch, index: number) => Promise) => Promise; export declare const executeBatchesInParallel: (batches: readonly Batch[], handler: (batch: Batch, index: number) => Promise) => Promise; //# sourceMappingURL=batches.d.ts.map