import * as React from 'react';
import { ThreadListGroupItem } from '../../../models/ThreadListGroupItem';
import { Thread } from '../../../models';
import { Threads } from '../../../models/Threads';
import { HistorySlotPropsType, HistorySlotType } from '../../core/history/HistoryType';
type Props = {
    listGroupItem: ThreadListGroupItem;
    setThread: (thread: Thread) => void;
    index: number;
    model: Threads<any, any>;
    slots: HistorySlotType;
    slotProps: Partial<HistorySlotPropsType>;
};
declare const _default: React.NamedExoticComponent<Props>;
export default _default;
