import React from 'react'; import { MessageType } from '../../types/ai-chat'; type ChatProps = { messages: MessageType[]; isLoading: boolean; isStreaming: boolean; streamingText: string; relatedQuestions: string[]; onSendMessage: (value: string) => void; }; declare const Chat: React.FC; export default Chat; //# sourceMappingURL=Chat.d.ts.map