import { BlockchainNetworkType } from '../model/blockchain/blockchain-network-type'; import { Protocol } from './protocol'; /** * Class represents the blockchain network connection */ export declare class BlockchainNetworkConnection { /** * The blockchain network type */ networkType: BlockchainNetworkType; /** * The host url */ apiHost: string; /** * The api port */ apiPort?: number | undefined; /** * The api protocol * */ apiProtocol?: Protocol | undefined; private apiUrl; constructor( /** * The blockchain network type */ networkType: BlockchainNetworkType, /** * The host url */ apiHost: string, /** * The api port */ apiPort?: number | undefined, /** * The api protocol * */ apiProtocol?: Protocol | undefined); /** * Gets the api url */ getApiUrl(): string; }