import { Hex } from 'viem';

/**
 * Check if the given string is a valid hex string. Throws an error if not.
 * @param maybeHex
 */
declare function getValidatedHex(maybeHex: string): Hex;

export { getValidatedHex };
