mongodb-chatbot-ui
Version:
UI React components for the MongoDB Assistant
7 lines (6 loc) • 345 B
TypeScript
import { ChatbotData } from "./useChatbot";
export declare const ChatbotContext: import("react").Context<ChatbotData | null>;
export type ChatbotProviderProps = ChatbotData & {
children: React.ReactNode;
};
export declare function ChatbotProvider({ children, ...chatbotData }: ChatbotProviderProps): import("react/jsx-runtime").JSX.Element;