import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type ConversationListRootProps, type ConversationListVariant } from '@mui/x-chat-headless'; import { type ChatConversationListClasses } from "./chatConversationListClasses.js"; export interface ChatConversationListProps extends ConversationListRootProps { className?: string; sx?: SxProps; classes?: Partial; /** * The visual variant of the conversation list. * - `'default'` – shows avatar, title, preview, timestamp, and unread badge. * - `'compact'` – shows only a small unread indicator, the title, and an actions button. * @default 'default' */ variant?: ConversationListVariant; } declare const ChatConversationList: React.ForwardRefExoticComponent>; export { ChatConversationList };