import { BaseCommand } from '../../base-command.js'; /** * It registers a new AI Agent and a Payment Plan associated to this new 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 RegisterAgentAndPlan 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; 'plan-metadata': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'price-config': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'credits-config': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'access-limit': 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-and-plan.d.ts.map