import { BaseCommand } from '../../base-command.js'; /** * Gets the list of plans that can be ordered to get access to an agent. */ export default class GetAgentPlans extends BaseCommand { static description: string; static examples: string[]; static flags: { 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: { agent: import("@oclif/core/lib/interfaces/parser.js").Arg>; }; run(): Promise; } //# sourceMappingURL=get-agent-plans.d.ts.map