UNPKG

smart-ai-chatbot

Version:

A customizable AI chatbot component for React and web applications.

12 lines (11 loc) 297 B
interface QAPair { question: string; answer: string; } interface ChatbotProps { dataset: QAPair[]; title?: string; theme?: "dark" | "light"; } declare const Chatbot: ({ dataset, title, theme, }: ChatbotProps) => import("react/jsx-runtime").JSX.Element; export default Chatbot;