/** * Cortex Chat — intelligent routing to Cortex commands * MVP: pattern-matching router (no LLM API needed) * V2: Claude API with Cortex MCP tools */ export interface ChatMessage { role: 'user' | 'cortex'; content: string; timestamp: string; actions?: ChatAction[]; } export interface ChatAction { label: string; type: 'launch' | 'link' | 'command'; value: string; } export declare function processMessage(input: string): Promise;