/** * Run command - Run an agent with a task */ export interface RunOptions { agent?: string; tools?: string; model?: string; verbose?: boolean; profile?: string; config?: string; output?: 'json' | 'text' | 'pretty'; json?: boolean; } export declare function execute(args: string[], options: RunOptions): Promise;