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 a loopback (localhost) client. It requires (read-only) * access to keys outside the client prefix. */ export interface ClientState { /** self chain ID */ chainId: string; /** self latest block height */ height: Height; } export interface ClientStateProtoMsg { typeUrl: '/ibc.lightclients.localhost.v1.ClientState'; value: Uint8Array; } /** * ClientState defines a loopback (localhost) client. It requires (read-only) * access to keys outside the client prefix. */ export interface ClientStateSDKType { chain_id: string; height: HeightSDKType; } export declare const ClientState: { typeUrl: "/ibc.lightclients.localhost.v1.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