/** ***************************************** * 抛出接口 ***************************************** */ export declare const hex: { encode: typeof encode; decode: typeof decode; }; /** ***************************************** * 编码字符 ***************************************** */ export declare function encode(str: string): number[]; /** ***************************************** * 解码字符 ***************************************** */ export declare function decode(arr: ArrayLike, start?: number, end?: number): string; //# sourceMappingURL=hex.d.ts.map