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