/**
 * Performs synchronous-like Array.forEach() on an array of promises.
 */
declare const forEach: (arr: Promise<any>[], fn: Function, cb: Function, i?: number) => void;
export default forEach;
