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