import { Height, type HeightSDKType } from '../../../core/client/v1/client.js'; import { BinaryReader, BinaryWriter } from '../../../../binary.js'; import { type JsonSafe } from '../../../../json-safe.js'; /** ClientState defines the 09-localhost client state */ export interface ClientState { /** the latest block height */ latestHeight: Height; } export interface ClientStateProtoMsg { typeUrl: '/ibc.lightclients.localhost.v2.ClientState'; value: Uint8Array; } /** ClientState defines the 09-localhost client state */ export interface ClientStateSDKType { latest_height: HeightSDKType; } export declare const ClientState: { typeUrl: "/ibc.lightclients.localhost.v2.ClientState"; encode(message: ClientState, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): ClientState; fromJSON(object: any): ClientState; toJSON(message: ClientState): JsonSafe; fromPartial(object: Partial): ClientState; fromProtoMsg(message: ClientStateProtoMsg): ClientState; toProto(message: ClientState): Uint8Array; toProtoMsg(message: ClientState): ClientStateProtoMsg; }; //# sourceMappingURL=localhost.d.ts.map