import { Dex } from '@nexex/api/Dex'; export declare class Token { symbol: string; addr: string; decimals?: number; static create(tokenSymbolOrAddr: string, dex: Dex): Promise; constructor(symbol: string, addr: string, decimals?: number); toString(showAddr?: boolean): string; }