ResponseInfo: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ResponseInfo;
    encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ResponseInfoAmino): ResponseInfo;
    fromAminoMsg(object: ResponseInfoAminoMsg): ResponseInfo;
    fromPartial(object: {
        appVersion?: bigint;
        data?: string;
        lastBlockAppHash?: Uint8Array;
        lastBlockHeight?: bigint;
        version?: string;
    }): ResponseInfo;
    fromProtoMsg(message: ResponseInfoProtoMsg): ResponseInfo;
    toAmino(message: ResponseInfo): ResponseInfoAmino;
    toProto(message: ResponseInfo): Uint8Array;
    toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg;
}