import { type ChatSuggestion, type ChatVariant } from '@mui/x-chat-headless'; import type { ChatBoxFeatures, ChatBoxLayoutMode, ChatBoxLayoutModeBreakpoints } from "./ChatBox.types.js"; interface ChatBoxContentProps { variant?: ChatVariant; features?: ChatBoxFeatures; layoutMode?: ChatBoxLayoutMode; layoutModeBreakpoints?: Partial; rootElement: HTMLElement | null; layoutClassName?: string; conversationsPaneClassName?: string; threadPaneClassName?: string; suggestions?: Array; suggestionsAutoSubmit?: boolean; } export declare function ChatBoxContent(props: ChatBoxContentProps): import("react/jsx-runtime").JSX.Element; export {};