type ValueOrArray = undefined | string | number | T | Array>; type SortObject = ValueOrArray>; /** * Recursively sorts object keys alphabetically */ export declare function sortObjectKeys(x: SortObject): SortObject; export {};