import React from "react";
interface ChatbotProps {
    apiKey: string;
    apiSecret: string;
    playerId: string;
}
declare const Chatbot: React.FC<ChatbotProps>;
export default Chatbot;
