/** * Converts a Uint8Array (or any typed array with bytes) to a hex string * * https://www.xaymar.com/articles/2020/12/08/fastest-uint8array-to-hex-string-conversion-in-javascript/ * * @param buffer - A buffer of byte values, typically a Uint8Array * @returns The hexadecimal string representation of the buffer */ export declare function toHex(buffer: Uint8Array): string;