export declare const hexToUTF8String: (hexData: string) => string; export declare const bytesToUtf8: (bytes: Uint8Array) => string; export declare const bytesToHex: (bytes: Uint8Array) => string; export declare const utf8ToBytes: (utf8: string) => Uint8Array;