import { StreamLike } from '../types/index.js'; export declare const consumeInBatches: (source: StreamLike, batchSize: number, onEachBatch: (items: T[]) => any) => Promise;