UNPKG

@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) 627 B
import * as React from 'react'; import { Thread, ThreadModel } from '../../models'; import { ThreadListCache } from '../../models/ThreadListCache'; import { HistorySlotType } from '../core/history/HistoryType'; import { Threads } from '../../models/Threads'; type Props = { model: Threads<any, any>; thread: ThreadModel; selected: boolean; setThread: (thread: Thread) => void; listModel: ThreadListCache; slots: Pick<HistorySlotType, 'listItemRoot' | 'baseListItemText' | 'threadListItemMenuButton'>; }; declare const _default: React.NamedExoticComponent<Props>; export default _default;