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