/** * Decodes a hex string into a Uint8Array. * * @param hexString - A string containing hexadecimal characters (0-9, A-F). * @returns A Uint8Array representing the decoded byte values. */ export declare function fromHex(hexString: string): Uint8Array | null;