/** * Peer type and creator */ import { PeerConnectionStatus } from './peer-connection-status'; export interface Peer { readonly nodeInfo: { readonly protocolVersion: { readonly p2p: string; readonly block: string; readonly app: string; }; readonly id: string; readonly listenAddr: string; readonly network: string; readonly version: string; readonly channels: string; readonly moniker: string; readonly other: { readonly txIndex: string; readonly rpcAddress: string; }; }; readonly isOutbound: boolean; readonly connectionStatus: PeerConnectionStatus; readonly remoteIp: string; } export declare const PeerCodec: import("../../../codec").BaseCodec;