@jss-rule-engine/chat
Version:
11 lines (10 loc) • 354 B
TypeScript
import React from 'react';
interface ChatBotWidgetProps {
welcomeMessage: string;
startOptions: string[];
iconUrl?: string;
flowId: string;
title: string;
}
export declare const ChatBotWidget: ({ welcomeMessage, startOptions, iconUrl, flowId, title }: ChatBotWidgetProps) => React.JSX.Element;
export default ChatBotWidget;