export declare const DO_NOT_SWAP = 0; export declare const FIRST_BEFORE_SECOND = -1; export declare const FIRST_AFTER_SECOND = 1; /** * Sorts the provided indexes with data using the comparator registered under the given id. * * @param {Array} indexesWithData The data to sort. * @param {string} rootComparatorId The comparator logic to use. * @param {Array} argsForRootComparator Additional arguments for comparator function. */ export declare function sort(indexesWithData: unknown[], rootComparatorId: string, ...argsForRootComparator: unknown[][]): void;