/** * Returns a hash of the given `value`. This is useful for comparing objects * deeply. For example, if the contents of an array are referenced inside a * `useEffect`, you can pass the hashed array to the effect dependencies to * invoke it when the array updates. */ export declare function useHash(value: T): string;