import type { MindMapAIConfig } from "../types"; import type { ThemeColors } from "../utils/theme"; import type { MindMapMessages } from "../utils/i18n"; export interface MindMapAIInputProps { config: MindMapAIConfig; theme: ThemeColors; messages: MindMapMessages; currentMarkdown?: string; onMarkdownStream: (markdown: string) => void; onComplete: () => void; onError: (error: string) => void; } export declare function MindMapAIInput({ config, theme, messages, currentMarkdown, onMarkdownStream, onComplete, onError, }: MindMapAIInputProps): import("react/jsx-runtime").JSX.Element;