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;
