import { FC } from 'react'; export interface IChatHistoryItem { id: string; title: string; updatedAt: number; loading: boolean; } export interface IChatHistoryProps { title: string; historyList: IChatHistoryItem[]; currentId?: string; className?: string; onNewChat: () => void; onHistoryItemSelect: (item: IChatHistoryItem) => void; onHistoryItemDelete: (item: IChatHistoryItem) => void; onHistoryItemChange: (item: IChatHistoryItem, title: string) => void; } declare const ChatHistory: FC; export default ChatHistory; //# sourceMappingURL=ChatHistory.d.ts.map