import { AbstractJetton } from './AbstractJetton'; /** * Represents an ERC20 token with a unique address and some metadata. */ export declare class Jetton extends AbstractJetton { readonly address: string; readonly isToken: true; constructor(address: string, decimals: number, symbol: string, name?: string, image?: string); /** * Returns true if the two tokens are equivalent, i.e. have the same chainId and address. * @param other other token to compare */ equals(other: Jetton): boolean; } /** * Compares two currencies for equality */ export declare function currencyEquals(jettonA: Jetton, jettonB: Jetton): boolean;