import { BaseCommand } from '../../base-command.js'; /** * It registers a new AI Agent on Nevermined. The agent must be associated to one or multiple Payment Plans. Users that are subscribers of a payment plan can query the agent. Depending on the Payment Plan and the configuration of the agent, the usage of the agent/service will consume credits. When the plan expires (because the time is over or the credits are consumed), the user needs to renew the plan to continue using the agent. */ export default class RegisterAgent extends BaseCommand { static description: string; static examples: string[]; static flags: { 'agent-metadata': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'agent-api': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'payment-plans': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; profile: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; format: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; verbose: import("@oclif/core/lib/interfaces/parser.js").BooleanFlag; }; run(): Promise; } //# sourceMappingURL=register-agent.d.ts.map