interface ChatWindowProps { isOpen: boolean; url: string; } declare const ChatWindow: ({ isOpen, url }: ChatWindowProps) => import("react/jsx-runtime").JSX.Element; export default ChatWindow;