type contextVariable = {
    key: string;
    value: string;
};
type contextVariables = contextVariable[];

type Environment = "dev" | "prod";
interface ReactChatBotProps {
    apiKey: string;
    botId: string;
    environment?: Environment;
    contextVariables?: contextVariables;
}

declare const OnDemandChatBot: React.FC<ReactChatBotProps>;

export { OnDemandChatBot };
