import {Options} from 'p-map'; /** Run promise-returning & async functions a specific number of times concurrently. @param count - Number of times to call `mapper`. @param mapper - Expected to return a `Promise` or value. @returns Fulfills when all promises returned from `mapper` are fulfilled, or rejects if any of the promises reject. The fulfilled value is an `Array` of the fulfilled values returned from `mapper` in order. */ export default function pTimes( count: number, mapper: (index: number) => ValueType | PromiseLike, options?: Options ): Promise; export {Options} from 'p-map';