import { BigDecimal } from '../core/big-decimal.js'; import { EthChainId, EthContext } from '../eth/index.js'; export interface TokenInfo { symbol: string; name: string; decimal: number; } export declare const NATIVE_ETH: { symbol: string; decimal: number; name: string; }; export declare function getERC20TokenInfo(contextOrNetworkish: EthContext | EthChainId, tokenAddress: string): Promise; export declare function getER20NormalizedAmount(contextOrNetworkish: EthContext | EthChainId, tokenAddress: string, amount: bigint): Promise; //# sourceMappingURL=token.d.ts.map