UNPKG

@xapp/chat-widget

Version:
13 lines (12 loc) 516 B
import 'rollup-plugin-inject-process-env'; import { WidgetEnv } from "@xapp/stentor-chat-widget"; import { FC } from "react"; import { ChatState } from "../../store/ChatState"; import { ChatWidgetMode } from "./ChatWidget"; export interface StaticChatWidgetContainerProps { readonly state?: ChatState; readonly mode?: ChatWidgetMode; readonly config: Omit<WidgetEnv, "connection">; } declare const StaticChatWidgetContainer: FC<StaticChatWidgetContainerProps>; export default StaticChatWidgetContainer;