import * as _m0 from "protobufjs/minimal"; import { Long, DeepPartial } from "@osmonauts/helpers"; export interface ProtocolVersion { p2p: Long; block: Long; app: Long; } export interface ProtocolVersionSDKType { p2p: Long; block: Long; app: Long; } export interface NodeInfo { protocolVersion: ProtocolVersion; nodeId: string; listenAddr: string; network: string; version: string; channels: Uint8Array; moniker: string; other: NodeInfoOther; } export interface NodeInfoSDKType { protocol_version: ProtocolVersionSDKType; node_id: string; listen_addr: string; network: string; version: string; channels: Uint8Array; moniker: string; other: NodeInfoOtherSDKType; } export interface NodeInfoOther { txIndex: string; rpcAddress: string; } export interface NodeInfoOtherSDKType { tx_index: string; rpc_address: string; } export interface PeerInfo { id: string; addressInfo: PeerAddressInfo[]; lastConnected: Date; } export interface PeerInfoSDKType { id: string; address_info: PeerAddressInfoSDKType[]; last_connected: Date; } export interface PeerAddressInfo { address: string; lastDialSuccess: Date; lastDialFailure: Date; dialFailures: number; } export interface PeerAddressInfoSDKType { address: string; last_dial_success: Date; last_dial_failure: Date; dial_failures: number; } export declare const ProtocolVersion: { encode(message: ProtocolVersion, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): ProtocolVersion; fromPartial(object: DeepPartial): ProtocolVersion; }; export declare const NodeInfo: { encode(message: NodeInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): NodeInfo; fromPartial(object: DeepPartial): NodeInfo; }; export declare const NodeInfoOther: { encode(message: NodeInfoOther, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): NodeInfoOther; fromPartial(object: DeepPartial): NodeInfoOther; }; export declare const PeerInfo: { encode(message: PeerInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PeerInfo; fromPartial(object: DeepPartial): PeerInfo; }; export declare const PeerAddressInfo: { encode(message: PeerAddressInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): PeerAddressInfo; fromPartial(object: DeepPartial): PeerAddressInfo; };