import type { ConversationProps } from '../interfaces'; import { ChatActionKind } from './action'; export type ChatAction = { type: ChatActionKind; payload?: ConversationProps[] | ConversationProps; }; export type ChatState = { listConversation?: ConversationProps[]; conversation?: ConversationProps; }; export declare const chatReducer: (state: ChatState, action: ChatAction) => ChatState; //# sourceMappingURL=chat.d.ts.map