import * as React from "react"; interface BotContextType { bot: any | null; setBot: (bot: any | null) => void; myBotUser: any | null; setMyBotUser: (user: any | null) => void; } export declare const BotContext: React.Context; export declare const BotProvider: ({ domain, botId, children }: { domain: string; botId: string; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element; export {};