import { Dispatch, createContext } from 'react'; import { ActionType } from '@/hooks/useCreateReducer'; import { Conversation } from '@/types/chat'; import { SupportedExportFormats } from '@/types/export'; import { ChatbarInitialState } from './Chatbar.state'; export interface ChatbarContextProps { state: ChatbarInitialState; dispatch: Dispatch>; handleDeleteConversation: (conversation: Conversation) => void; handleClearConversations: () => void; handleExportData: () => void; handleImportConversations: (data: SupportedExportFormats) => void; } const ChatbarContext = createContext(undefined!); export default ChatbarContext;