import * as React from 'react'; import { type BoxProps } from '@mui/material/Box'; import { MessageModel, ThreadModel } from '../../models'; type Props = { thread: ThreadModel; message: MessageModel; stopAnimation?: boolean; } & BoxProps; export declare const StatusBoxStyled: import("@emotion/styled").StyledComponent, HTMLDivElement>, "ref"> & { ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject | null | undefined; }, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/material/Stack").StackOwnProps> & import("@mui/system").MUIStyledCommonProps, {}, {}>; declare const MessageAssistantProgress: React.FC; export default MessageAssistantProgress;