import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type TypingIndicatorProps } from '@mui/x-chat-headless'; import { type ChatTypingIndicatorClasses } from "./chatTypingIndicatorClasses.js"; export interface ChatTypingIndicatorProps extends TypingIndicatorProps { className?: string; sx?: SxProps; classes?: Partial; } declare const ChatTypingIndicator: React.ForwardRefExoticComponent>; export { ChatTypingIndicator };