/** * Agents command - Run multi-agent orchestration * * Usage: * praisonai-ts agents run --agents "researcher,writer" "Research AI trends" */ export interface AgentsOptions { agents?: string; process?: 'sequential' | 'parallel'; model?: string; verbose?: boolean; profile?: string; config?: string; output?: 'json' | 'text' | 'pretty'; json?: boolean; } /** * Execute agents run subcommand */ export declare function executeRun(args: string[], options: AgentsOptions): Promise; /** * Main execute function - routes to subcommands */ export declare function execute(args: string[], options: AgentsOptions): Promise;