UNPKG

mongodb-chatbot-ui

Version:

UI React components for the MongoDB Chatbot Framework

8 lines (7 loc) 457 B
/// <reference types="react" /> import { type ChatbotTextInputTriggerProps } from "./useTextInputTrigger"; export type InputBarTriggerProps = ChatbotTextInputTriggerProps & { bottomContent?: React.ReactNode; suggestedPrompts?: string[]; }; export declare function InputBarTrigger({ className, suggestedPrompts, bottomContent, fatalErrorMessage, placeholder, darkMode: darkModeProp, }: InputBarTriggerProps): import("react/jsx-runtime").JSX.Element;