import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type SuggestionsRootProps } from '@mui/x-chat-headless'; import { type ChatSuggestionsClasses } from "./chatSuggestionsClasses.js"; export interface ChatSuggestionsProps extends SuggestionsRootProps { className?: string; sx?: SxProps; classes?: Partial; } declare const ChatSuggestions: React.ForwardRefExoticComponent>; export { ChatSuggestions };