/** * Make a sorting comparator that will sort by a given sort key */ export declare function sortKeyComparator(keyFn: (x: A) => Array): (a: A, b: A) => number;