import { AsyncWrappable } from '../../types/async-iterable'; declare function asyncSome(func: (value: T, i: number) => boolean | Promise): (iterable: AsyncWrappable) => Promise; declare function asyncSome(func: (value: T, i: number) => boolean | Promise, iterable: AsyncWrappable): Promise; export { asyncSome };