/** * Runs a mapping function over an asynchronous iterable */ export declare function concurrentMap(mapper: (t: TFrom) => Promise, concurrency: number): (source: AsyncIterable) => AsyncIterableIterator;