import { AsyncWrappable } from '../../types/async-iterable'; declare function asyncForEach(callback: (value: T, i: number) => void): (iterable: AsyncWrappable) => Promise; declare function asyncForEach(callback: (value: T, i: number) => void, iterable: AsyncWrappable): Promise; export { asyncForEach };