import { Codec } from "../mod.js"; export declare function encodeHex(bytes: Uint8Array): string; export declare function encodeHexPrefixed(bytes: Uint8Array): string; export declare function decodeHex(hex: string): Uint8Array; export declare function hex($inner: Codec): Codec;