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

12 lines (11 loc) 497 B
import * as React from 'react'; import { ListGroupType } from './useThreadsGroupedList'; import { HistorySlotPropsType, HistorySlotType } from '../core/history/HistoryType'; type Props = { group?: ListGroupType; loading?: boolean; slotProps?: Partial<Pick<HistorySlotPropsType, 'listTimeTextWrapper' | 'listTimeText'>>; slots?: Pick<HistorySlotType, 'listTimeTextWrapper' | 'listTimeText'>; }; declare const TimeGroupItem: React.FC<Props>; export default TimeGroupItem;