import React, { Dispatch, PropsWithChildren } from 'react'; import type { IChatContext } from '../interfaces'; import { type ChatAction, type ChatState } from '../reducer'; type ChatProviderProps = Omit & { chatState?: ChatState; chatDispatch?: Dispatch; } & PropsWithChildren; export declare const ChatContext: React.Context; export declare const ChatProvider: React.FC; export {}; //# sourceMappingURL=ChatProvider.d.ts.map