/** * Language-neutral hex helpers so the conformance corpus can express golden * frames as hex strings that any consumer (this repo, jwulf/c8ctl-plugin-nano, * a future non-JS client) can decode identically. */ export declare function bytesToHex(bytes: Uint8Array): string; export declare function hexToBytes(hex: string): Uint8Array;