import { References } from "./references"; import { ChatMessageFeedProps } from "./ChatMessageFeed"; import { DarkModeProps } from "./DarkMode"; export type ChatbotViewProps = DarkModeProps & Omit & { fatalErrorMessage?: string; initialMessageReferences?: References; initialMessageSuggestedPrompts?: string[]; initialMessageText?: string; inputBarPlaceholder?: string; inputBottomText?: string; messageBottomContent?: React.ReactNode; windowTitle?: string; };