/**
 * Sort keys based on priority list of keys. They will always be first and in
 * same order as the priority list.
 *
 * @param priorityKeys List of keys that should be sorted before any other keys.
 */
export declare function createPriorityKeySort(priorityKeys: Array<string>): (a: string, b: string) => number;
