import * as React from 'react'; import { Thread, ThreadModel } from '../../models'; import { ThreadListCache } from '../../models/ThreadListCache'; import { HistorySlotType } from '../core/history/HistoryType'; import { Threads } from '../../models/Threads'; type Props = { model: Threads; thread: ThreadModel; selected: boolean; setThread: (thread: Thread) => void; listModel: ThreadListCache; slots: Pick; }; declare const _default: React.NamedExoticComponent; export default _default;