UNPKG

@botforge/widget

Version:

Official BotForge chatbot widget for easy integration into any website or web application

11 lines (10 loc) 277 B
import React from "react"; import { BotForgeConfig } from "../types"; interface ChatButtonProps { onClick: () => void; isOpen: boolean; config: BotForgeConfig; hasUnreadMessages: boolean; } export declare const ChatButton: React.FC<ChatButtonProps>; export {};