import * as React from 'react'; import { ListGroupType } from './useThreadsGroupedList'; import { HistorySlotPropsType, HistorySlotType } from '../core/history/HistoryType'; type Props = { group?: ListGroupType; loading?: boolean; slotProps?: Partial>; slots?: Pick; }; declare const TimeGroupItem: React.FC; export default TimeGroupItem;