import _m0 from "protobufjs/minimal"; import { SemanticVersion } from "./basic_types"; import { QueryHeader } from "./query_header"; import { ResponseHeader } from "./response_header"; export declare const protobufPackage = "proto"; /** Get the deployed versions of Hedera Services and the HAPI proto in semantic version format */ export interface NetworkGetVersionInfoQuery { /** * Standard info sent from client to node, including the signed payment, and what kind of * response is requested (cost, state proof, both, or neither). */ header: QueryHeader | undefined; } /** Response when the client sends the node NetworkGetVersionInfoQuery */ export interface NetworkGetVersionInfoResponse { /** * Standard response from node to client, including the requested fields: cost, or state proof, * or both, or neither */ header: ResponseHeader | undefined; /** The Hedera API (HAPI) protobuf version recognized by the responding node. */ hapiProtoVersion: SemanticVersion | undefined; /** The version of the Hedera Services software deployed on the responding node. */ hederaServicesVersion: SemanticVersion | undefined; } export declare const NetworkGetVersionInfoQuery: { encode(message: NetworkGetVersionInfoQuery, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): NetworkGetVersionInfoQuery; fromJSON(object: any): NetworkGetVersionInfoQuery; toJSON(message: NetworkGetVersionInfoQuery): unknown; create(base?: DeepPartial): NetworkGetVersionInfoQuery; fromPartial(object: DeepPartial): NetworkGetVersionInfoQuery; }; export declare const NetworkGetVersionInfoResponse: { encode(message: NetworkGetVersionInfoResponse, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): NetworkGetVersionInfoResponse; fromJSON(object: any): NetworkGetVersionInfoResponse; toJSON(message: NetworkGetVersionInfoResponse): unknown; create(base?: DeepPartial): NetworkGetVersionInfoResponse; fromPartial(object: DeepPartial): NetworkGetVersionInfoResponse; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Array ? Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends { $case: string; } ? { [K in keyof Omit]?: DeepPartial; } & { $case: T["$case"]; } : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {}; //# sourceMappingURL=network_get_version_info.d.ts.map