import { Address } from 'viem'; /** * Check if the given string is a valid address. Throws an error if not. * @param maybeAddress */ declare function getValidatedAddress(maybeAddress: string): Address; export { getValidatedAddress };