import { FC } from 'react'; import { default as Message } from './Message'; type Message = { id: string; content: string; sender: string; isThinking?: boolean; timestamp: string; }; export interface ChatProps { socketUrl: string; isOpen: boolean; messageHistory: Array; title?: string; isSimulated?: boolean; } declare const Chat: FC; export default Chat;