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