import { Options } from './types.js'; /** * Promise.map(arr, fn, concurrency) in Bluebird * code take from caolan/async */ declare function map>(arr: IN[], fn?: (item: Awaited, index?: number, array?: IN[]) => OUT, { concurrency }?: Options): Promise[]>; export { map as default, map };