export declare const hexToUint8Array: (hex: string) => Uint8Array; export declare const stringToUint8Array: (str: string) => Uint8Array; export declare const uint8ArrayToHex: (uint8Array: Uint8Array) => string; export declare const compareUint8Arrays: (a: Uint8Array, b: Uint8Array) => boolean;