IdentifiedClientState: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): IdentifiedClientState;
    encode(message: IdentifiedClientState, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: IdentifiedClientStateAmino): IdentifiedClientState;
    fromAminoMsg(object: IdentifiedClientStateAminoMsg): IdentifiedClientState;
    fromPartial(object: {
        clientId?: string;
        clientState?: {
            $typeUrl?: string;
            typeUrl?: string;
            value?: Uint8Array;
        };
    }): IdentifiedClientState;
    fromProtoMsg(message: IdentifiedClientStateProtoMsg): IdentifiedClientState;
    toAmino(message: IdentifiedClientState): IdentifiedClientStateAmino;
    toAminoMsg(message: IdentifiedClientState): IdentifiedClientStateAminoMsg;
    toProto(message: IdentifiedClientState): Uint8Array;
    toProtoMsg(message: IdentifiedClientState): IdentifiedClientStateProtoMsg;
}