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>;
