@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
16 lines (15 loc) • 609 B
TypeScript
import * as React from 'react';
import { ThreadListGroupItem } from '../../../models/ThreadListGroupItem';
import { Thread } from '../../../models';
import { Threads } from '../../../models/Threads';
import { HistorySlotPropsType, HistorySlotType } from '../../core/history/HistoryType';
type Props = {
listGroupItem: ThreadListGroupItem;
setThread: (thread: Thread) => void;
index: number;
model: Threads<any, any>;
slots: HistorySlotType;
slotProps: Partial<HistorySlotPropsType>;
};
declare const _default: React.NamedExoticComponent<Props>;
export default _default;