ResponseException: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ResponseException;
    encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ResponseExceptionAmino): ResponseException;
    fromAminoMsg(object: ResponseExceptionAminoMsg): ResponseException;
    fromPartial(object: {
        error?: string;
    }): ResponseException;
    fromProtoMsg(message: ResponseExceptionProtoMsg): ResponseException;
    toAmino(message: ResponseException): ResponseExceptionAmino;
    toProto(message: ResponseException): Uint8Array;
    toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg;
}