import { type AxiosRequestHeaders } from "axios"; type ChatbotConfig = { Authorization?: string; session_token: string; }; declare class Chatbot { config: ChatbotConfig; conversation_id: string | null; parent_id: string; headers: AxiosRequestHeaders; constructor(config: ChatbotConfig, conversation_id?: null); reset_chat(): void; private refresh_headers; private generate_uuid; get_chat_response(prompt: string): Promise<{ message: any; conversation_id: string | null; parent_id: string; }>; refresh_session(): Promise; } export { Chatbot };