import type { IAsyncEnumerable, IComparer, IOrderedAsyncEnumerable } from "../../types"; export declare const orderByDescendingAsync: (source: IAsyncEnumerable, keySelector: (x: TSource) => Promise, comparer?: IComparer) => IOrderedAsyncEnumerable;