UNPKG

sandeep-react-chatbotify

Version:

A modern React library for creating flexible and extensible chatbots.

12 lines 448 B
import { Dispatch, SetStateAction } from "react"; import "./ChatBotBody.css"; /** * Contains chat messages between the user and bot. * * @param setChatScrollHeight setter for tracking chat window scroll height */ declare const ChatBotBody: ({ setChatScrollHeight, }: { setChatScrollHeight: Dispatch<SetStateAction<number>>; }) => import("react/jsx-runtime").JSX.Element; export default ChatBotBody; //# sourceMappingURL=ChatBotBody.d.ts.map