import { type ReactNode } from "react"; import type { ChatBoxConfig, ChatContextValue } from "./lib/types"; export declare function useChatContext(): ChatContextValue; interface ChatProviderProps { children: ReactNode; config?: ChatBoxConfig; } export declare function ChatProvider({ children, config }: ChatProviderProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=chat-provider.d.ts.map