export { bytesToHex, concatBytes, hexToBytes, randomBytes, utf8ToBytes } from '@noble/hashes/utils.js'; export declare function bytesToBase64(bytes: Uint8Array): string; export declare function bytesToBase64Url(bytes: Uint8Array): string; export declare function base64ToBytes(str: string): Uint8Array; export declare function compareBytes(a: Uint8Array, b: Uint8Array): number; export declare function equalBytes(a: Uint8Array, b: Uint8Array): boolean; export declare function assertEqual(actual: unknown, expected: unknown, message?: string): void; export declare function decodeCBOR(data: Uint8Array): T; export declare function encodeCBOR(data: unknown): Uint8Array;