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