/** * Router command - Route requests to appropriate agents */ export interface RouterOptions { model?: string; verbose?: boolean; output?: 'json' | 'text' | 'pretty'; json?: boolean; routes?: string; } export declare function execute(args: string[], options: RouterOptions): Promise;