@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
13 lines (12 loc) • 428 B
TypeScript
import * as React from 'react';
import { ThreadModel } from '../../models/ThreadModel';
import { FileAttachmentConfig } from './attachments/useFileAttachment';
type Props = {
thread?: ThreadModel;
isTyping?: boolean;
attachmentConfig: FileAttachmentConfig;
onSendMessage: () => void;
disabledSendMessage?: boolean;
};
declare const RowInnerFooter: React.FC<Props>;
export default RowInnerFooter;