import { BaseCommand } from '../../../base-command.js'; import { type PersonaChatThread } from '../../../lib/persona-chat.js'; export default class PersonaChatSwitchPersona extends BaseCommand { static args: { threadId: import("@oclif/core/interfaces").Arg>; personaId: import("@oclif/core/interfaces").Arg>; }; static description: string; static examples: string[]; static summary: string; run(): Promise; }