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

8 lines (7 loc) 245 B
import * as React from 'react'; import { IdType } from "../../../types"; type Props = React.HTMLAttributes<HTMLDivElement> & { threadId: IdType; }; declare const ThreadListItemRoot: React.FC<Props>; export default ThreadListItemRoot;