import * as React from 'react'; import { type ChatSuggestion, type ChatVariant } from '@mui/x-chat-headless'; import type { ChatBoxFeatures, ChatBoxLayoutMode, ChatBoxLayoutModeBreakpoints } from "./ChatBox.types.mjs"; 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): React.JSX.Element; export {};