/**
 * Converts a Uint8Array of binary data to a hexadecimal encoded string.
 *
 * @param bytes The binary data to encode
 */
export declare const getHexFromBytes: (bytes: Uint8Array) => string;
