import { MonoTypeOperatorAsyncFunction } from '../../interfaces'; export declare function orderBy(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction; export declare function orderByDescending(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction; export declare function thenBy(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction; export declare function thenByDescending(keySelector: (item: TSource) => TKey, comparer?: (fst: TKey, snd: TKey) => number): MonoTypeOperatorAsyncFunction;