import React from "react"; type ChatbotProps = { botId: string; theme?: "light" | "dark"; welcomeMessage?: string; }; declare const Chatbot: React.FC; export default Chatbot;