export declare function bytesToHexString(byteArray: number[]): string; export declare function hexStringToBytes(hex: any): any[]; export declare function strToSHA256(s: string): string; export declare function bytesToSHA256(data: ArrayBuffer): string; export declare function toBase64(str: string): string; export declare function fromBase64(data: string): string;