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