import { Currency, Token, NativeCurrency } from '@pulsex/swap-sdk-core'; /** * * Native is the main usage of a 'native' currency */ export declare class Native extends NativeCurrency { protected constructor({ chainId, decimals, name, symbol, }: { chainId: number; decimals: number; symbol: string; name: string; }); get wrapped(): Token; private static cache; static onChain(chainId: number): Native; equals(other: Currency): boolean; } //# sourceMappingURL=native.d.ts.map