UNPKG

@robylon/robylon-web-react-sdk

Version:
10 lines (9 loc) 314 B
import React from "react"; import { ChatbotConfig } from "../types"; export interface RobylonChatbotProps extends ChatbotConfig { loadingComponent?: React.ReactNode; errorComponent?: React.ComponentType<{ error: string; }>; } export declare const RobylonChatbot: React.FC<RobylonChatbotProps>;