mongodb-chatbot-ui
Version:
UI React components for the MongoDB Chatbot Framework
11 lines (10 loc) • 456 B
TypeScript
/// <reference types="react" />
import { DarkModeProps } from "./DarkMode";
import { References } from "./references";
export type DevCenterChatbotProps = DarkModeProps & {
initialMessageText?: string;
initialMessageSuggestedPrompts?: string[];
initialMessageReferences?: References;
messageBottomContent?: React.ReactNode;
};
export declare function DevCenterChatbot(props: DevCenterChatbotProps): import("react/jsx-runtime").JSX.Element;