import React from 'react'; export interface ChatbotProps { /** Content to be displayed in the chatbot */ children: React.ReactNode; /** Display Mode for the Chatbot */ displayMode?: ChatbotDisplayMode; /** Visibility flag for the chatbot */ isVisible?: boolean; /** Custom classname for the Chatbot component */ className?: string; } export declare enum ChatbotDisplayMode { default = "default", embedded = "embedded", docked = "docked", fullscreen = "fullscreen" } export declare const Chatbot: React.FunctionComponent; export default Chatbot;