import { MessageFunctionType, Result } from '../types'; export interface IsEthereumAddressErrors { TARGET_ARGUMENT_NOT_A_STRING: MessageFunctionType; } export declare const IS_ETHEREUM_ADDRESS_ERRORS: IsEthereumAddressErrors; /** * Tests whether the `target` is an ethereum address * * * ### Example * ``` * expect(isEthereumAddress('0x0000000000000000000000000000000000000001').value).toBeTruthy() * ``` * * @param target The target string * */ export declare function isEthereumAddress(target: string): Result;