import type { McpClientConfig } from '@contractspec/lib.ai-agent/tools/mcp-client.browser'; export interface AiChatAssistantDashboardProps { /** Chat API URL (e.g. /api/chat). Required for streaming. */ proxyUrl?: string; /** MCP server configs. Browser supports http/sse only; stdio returns empty tools. */ mcpServers?: McpClientConfig[]; /** Initial thinking level */ thinkingLevel?: 'instant' | 'thinking' | 'extra_thinking' | 'max'; /** Suggestion chips for empty state */ suggestions?: string[]; /** System prompt override */ systemPrompt?: string; className?: string; } export declare function AiChatAssistantDashboard({ proxyUrl, mcpServers, thinkingLevel, suggestions, systemPrompt, className, }: AiChatAssistantDashboardProps): import("react/jsx-runtime").JSX.Element;