UNPKG

mongodb-chatbot-ui

Version:

UI React components for the MongoDB Chatbot Framework

12 lines (11 loc) 499 B
/// <reference types="react" /> import { MessageData } from "./services/conversations"; import { DarkModeProps } from "./DarkMode"; export type ChatMessageFeedProps = DarkModeProps & { className?: HTMLElement["className"]; disclaimer?: React.ReactNode; disclaimerHeading?: string; initialMessage?: MessageData | null; messageBottomContent?: React.ReactNode; }; export declare function ChatMessageFeed(props: ChatMessageFeedProps): import("react/jsx-runtime").JSX.Element | null;