import Long from "long"; import _m0 from "protobufjs/minimal"; export declare const protobufPackage = "ibc.core.client.v2"; /** CounterpartyInfo defines the key that the counterparty will use to message our client */ export interface CounterpartyInfo { /** merkle prefix key is the prefix that ics provable keys are stored under */ merklePrefix: Uint8Array[]; /** client identifier is the identifier used to send packet messages to our client */ clientId: string; } export declare const CounterpartyInfo: { encode(message: CounterpartyInfo, writer?: _m0.Writer): _m0.Writer; decode(input: _m0.Reader | Uint8Array, length?: number): CounterpartyInfo; fromJSON(object: any): CounterpartyInfo; toJSON(message: CounterpartyInfo): unknown; create(base?: DeepPartial): CounterpartyInfo; fromPartial(object: DeepPartial): CounterpartyInfo; }; type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined; export type DeepPartial = T extends Builtin ? T : T extends Long ? string | number | Long : T extends globalThis.Array ? globalThis.Array> : T extends ReadonlyArray ? ReadonlyArray> : T extends {} ? { [K in keyof T]?: DeepPartial; } : Partial; export {};