import { ByteArray } from '../types.js'; /** * Converts a byte array to a hexadecimal string. * * @param bytes - The byte array to convert. * @returns A hexadecimal string representation of the bytes. * * @example * ```typescript * bytesToHex(new Uint8Array([255, 0, 127])) // Returns 'FF007F' * ``` */ export declare function bytesToHex(bytes: ByteArray): string;