import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsEthereumAddressProps { } /** * Check if the string is an [Ethereum](https://ethereum.org/) address using basic regex. Does not validate address checksums. */ export declare const isEthereumAddress: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;