import React, { ReactNode } from 'react'; import { Message, ChatPosition } from '../types'; interface ChatWindowProps { messages: Message[]; isLoading: boolean; onSend: (message: string) => void; onClose: () => void; position: ChatPosition; offsetX: number; offsetY: number; width: number | string; height: number | string; placeholder?: string; loadingText?: string; headerIcon?: ReactNode; headerTitle?: string; } export declare const ChatWindow: React.FC; export {};