export declare const SHA512_HASH_LENGTH_BYTES = 64; /** * Create the hash of the given data. * @param uint8Array The bytes. * @return The hash. */ export declare function sha512Hash(uint8Array: Uint8Array): Uint8Array;