export declare function asyncEach<T, R>(iterable: T[], cb: (v: T) => Promise<R>): Promise<R[]>;
