/** * Computes a unique 64-bit hash of the specified value and returns the hex string representation. This * function internally uses a non-cryptographic FNV1A64 algorithm for hashing. Hashing is implemented * via structural traversal of the value. */ export declare function Hash(value: unknown): string;