type PromiseArray = (T | Promise)[]; type MapIteratee = (value: T, index: number) => R | Promise; type ReduceIteratee = (previousResult: P, currentValue: C, index: number) => R | Promise; export declare function mapAsync(promiseArray: PromiseArray): (iteratee: MapIteratee) => Promise; export declare function reduceAsync(promiseArray: PromiseArray): (iteratee: ReduceIteratee, initialValue?: I) => Promise;