react-chatbotify
Version:
A modern React library for creating flexible and extensible chatbots.
15 lines • 546 B
TypeScript
import { Plugin } from "../types/Plugin";
import { Slots } from "../types/Slots";
import "./ChatBotContainer.css";
/**
* Integrates, loads plugins and contains the various components that makeup the chatbot.
*
* @param plugins plugins to initialize
* @param slots slots to inject custom headers, footers etc
*/
declare const ChatBotContainer: ({ plugins, slots, }: {
plugins?: Array<Plugin>;
slots?: Slots;
}) => import("react/jsx-runtime").JSX.Element;
export default ChatBotContainer;
//# sourceMappingURL=ChatBotContainer.d.ts.map