import { Currency } from './currency';
/**
 * A BridgeCurrency is any fungible financial instrument on any blockchain.
 *
 */
export declare class BridgeCurrency extends Currency {
    readonly chainId: string;
    readonly address: string;
    readonly logo?: string;
    /**
     * @param chainId chainId of the currency
     * @param address of the currency
     * @param logo of the currency
     * @param decimals of the currency
     * @param symbol of the currency
     * @param name of the currency
     */
    constructor(address: string, chainId: string, decimals: number, logo?: string, symbol?: string, name?: string);
}
