import { Bytes } from '../types/bytes.js'; export declare function isHex(input: string | Bytes): boolean; export declare function getHexByteLength(input: string): number; export declare function normalizeHex(input: string): string; export declare function fromHEX(input: string): Bytes; export declare function toHEX(input: Bytes): string;