/** * Converts a Uint8Array to a hexadecimal string. * @param {Uint8Array} arr - The Uint8Array to be converted. * @returns {string} The resulting hexadecimal string. */ export declare const uint8ArrayFromHex: (hexString: string) => Uint8Array;