/** * Converts a string to its hexadecimal representation * * @param {string} utf8Str - The string to convert * @returns {string} The hexadecimal representation of the input string */ declare const toHex: (utf8Str: string) => string; export { toHex };