declare const runWithConcurrency: (items: T[], concurrency: number, workerFn: (item: T, index: number) => Promise) => Promise; declare const delay: (delayMs?: number) => Promise; export { delay, runWithConcurrency };