export interface BatchConfig { batchSize: number; delayMs: number; maxItems?: number; } export declare function processBatches(items: T[], processor: (item: T) => Promise, config: BatchConfig): Promise; //# sourceMappingURL=batch.d.ts.map