import { Currency } from '../currency'; import { NativeCurrency } from '../NativeCurrency'; import { Token } from '../token'; /** * Base is the main usage of a 'native' currency, i.e. for Base One and all testnets */ export declare class Base extends NativeCurrency { protected constructor(chainId: number); get wrapped(): Token; private static _etherCache; static onChain(chainId: number): Base; equals(other: Currency): boolean; }