@plteam/chat-ui
Version:
CUI Kit is a free and open-source library for creating AI assistant chat interfaces, built with React, Material UI, and TypeScript
14 lines (13 loc) • 967 B
TypeScript
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<import("@mui/material/Stack").StackOwnProps & import("@mui/material/OverridableComponent").CommonProps & Omit<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
ref?: ((instance: HTMLDivElement | null) => void) | React.RefObject<HTMLDivElement> | null | undefined;
}, keyof import("@mui/material/OverridableComponent").CommonProps | keyof import("@mui/material/Stack").StackOwnProps> & import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme>, {}, {}>;
declare const MessageAssistantProgress: React.FC<Props>;
export default MessageAssistantProgress;