export declare type CurrencyInfo = { /** * Address for the ERC20 Token (null for native currency) */ address?: string | null; /** * How many decimals places are supported */ decimals?: number; /** * True if the currency is native, false otherwise */ isNative?: boolean; /** * Symbol for the currency */ symbol?: string; };