export interface Token { chainId: number; address: string; symbol: string; decimals: number; } export declare function initAllTokens(chainId: number): Promise; export declare function tokenByAddrOrSymbol(addressOrSymbol: string): Token;