import { BaseCommand } from '../../base-command.js'; /** * Lists the AI agents **you** published (the authenticated caller's own agents). This is account management, not a marketplace search — it never returns other users' agents. */ export default class GetAgents extends BaseCommand { static description: string; static examples: string[]; static flags: { page: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; offset: import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'sort-by': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'sort-order': import("@oclif/core/lib/interfaces/parser.js").OptionFlag; 'org-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; }; run(): Promise; } //# sourceMappingURL=get-agents.d.ts.map