/** * Chat interface component - main interactive UI */ import React from 'react'; import type { Configuration, Session } from '../types/index.js'; import type { McpServerManager } from '../services/mcp.js'; export interface ChatInterfaceProps { config: Configuration; session: Session; initialQuery?: string; mcpManager?: McpServerManager; onExit: () => void; } export declare function ChatInterface({ config: initialConfig, session: initialSession, initialQuery, mcpManager, onExit, }: ChatInterfaceProps): React.JSX.Element; //# sourceMappingURL=ChatInterface.d.ts.map