import { ChainId } from "./ChainId"; import { EthereumContractAddress } from "./EthereumContractAddress"; export declare class TokenInformation { name: string; symbol: string; chainId: ChainId; address: EthereumContractAddress; nativeToken: boolean; erc20: boolean; decimals: number; logoUrl: string; constructor(name: string, symbol: string, chainId: ChainId, address: EthereumContractAddress, nativeToken: boolean, erc20: boolean, decimals: number, logoUrl: string); } //# sourceMappingURL=TokenInformation.d.ts.map