/** * Main chat conversation thread component. * Renders the sequence of message sections, the floating toolbar, and the input bar. * Handles automatic scrolling to the bottom on new messages and manages * window resize events for layout adjustments. * * @returns {JSX.Element} The rendered chat thread */ declare const Chat: () => import("react").JSX.Element; export default Chat;