import { CurrentConversation } from '../store/ConversationStore'; import { ChatType } from '../types/messageType'; export declare function resetCache(chatType: ChatType, conversationId: string): void; declare const useHistoryMessages: (cvs: CurrentConversation) => { historyMsgs: any; loadMore: () => void; isLoading: boolean; }; export { useHistoryMessages };