/** * Immutably sorts the object keys * * @since v0.0.1 * @category Object * @template {T} - The type of the original object * @param {T} obj - The original object * @returns {T} * @example * const obj = { hamster: true, frog: false, cow: false }; * sortKeys(obj) //=> { cow: false, frog: false, hamster: true } */ export declare const sortKeys: >(obj: T) => T;