/** * Checks if the provided string is a valid hexadecimal string. * @param str The string to check. * @returns `true` if the string is a valid hexadecimal string, `false` otherwise. */ export declare const isHex: (str: string) => boolean;