import { BaseCommand } from '../../base-command.js'; /** * Removes a Payment Plan from an AI Agent. After this operation, users with access to the Payment Plan will no longer be able to access the AI Agent. */ export default class RemovePlanFromAgent extends BaseCommand { static description: string; static examples: string[]; static flags: { 'agent-id': 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; }; static args: { plan: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; run(): Promise; } //# sourceMappingURL=remove-plan-from-agent.d.ts.map