import { AsyncWrappable } from '../../types/async-iterable'; declare function asyncIsSorted(iterable: AsyncWrappable): Promise; declare function asyncIsSorted(compare: (a: T, b: T) => number, iterable: AsyncWrappable): Promise; export { asyncIsSorted };