import * as React from "react"; import { AIChat } from "../AIChatLog"; declare const ChatWindow: ({ aiChats, loggerRef }: { aiChats: AIChat[]; loggerRef: React.MutableRefObject; }) => JSX.Element; export { ChatWindow };