import { IOrder } from './../types/order';
import { IAnySortBy } from './../types/anySortBy';
import { IComparer } from './../interfaces/comparer';
export declare const sortArray: (order: IOrder, ctx: any[], sortBy: IAnySortBy, comparer: IComparer) => any[];
