UNPKG

modelosaurus-chatbot

Version:

A customizable plug and play chatbot component for React applications, designed to work seamlessly with the Modelosaurus API.

10 lines (9 loc) 260 B
import React from 'react'; import { ChatbotData } from '../../types'; interface ChatHeaderProps { settings: ChatbotData; isExpanded: boolean; toggleChat: () => void; } declare const ChatHeader: React.FC<ChatHeaderProps>; export default ChatHeader;