import React from 'react';
type Props = {
    color?: string;
    position?: string;
    welcomeModalWidth?: string;
    welcomeModalHeight?: string;
    chatScreenWidth?: string;
    chatScreenHeight?: string;
    chatApiUrl: string;
    platformId: string;
    sessionId: string;
    authToken: string;
};
declare const ChatBot: ({ welcomeModalHeight, welcomeModalWidth, chatScreenHeight, chatScreenWidth, chatApiUrl, platformId, sessionId, authToken }: Props) => React.JSX.Element;
export default ChatBot;
