import { Currency } from '../Currency';
import { NativeCurrency } from '../NativeCurrency';
import { Token } from '../Token';
/**
 * EVMNativCoin is the main usage of a 'native' currency, i.e. for Ethereum mainnet and all testnets
 */
export declare class EVMNativeCoin extends NativeCurrency {
    constructor(chainId: string, decimal: number, symbol?: string, name?: string, logo?: string);
    get wrapped(): Token;
    private static _etherCache;
    equals(other: Currency): boolean;
}
