/**读取ArrayBuffer成hex字符串 */ export declare function decodeBinaryToUTF8(binary: Uint8Array): string; /**将hex字符串写成额ArrayBuffer */ export declare function encodeUTF8ToBinary(value?: string): Uint8Array;