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