import * as React from 'react'; import { SxProps, Theme } from '@mui/system'; import { type StreamingIndicatorProps } from '@mui/x-chat-headless'; import { type ChatStreamingIndicatorClasses } from "./chatStreamingIndicatorClasses.mjs"; export interface ChatStreamingIndicatorProps extends StreamingIndicatorProps { className?: string; sx?: SxProps; classes?: Partial; } /** * Animated dots shown while an assistant response is in flight: as a trailing * row while waiting for the response to start, then inside the assistant * message while it streams. */ declare const ChatStreamingIndicator: React.ForwardRefExoticComponent>; export { ChatStreamingIndicator };