/** * Returns a hash code from an object * @param {Object} obj The object to hash. * @return {String} A hash string */ declare function hashObject(obj: Record): string; export { hashObject };