import React from 'react';

interface AgenticCindyChatBotProps {
    app_type: string;
    title: string;
    placeholder: string;
    base_url: string;
    access_token_key: string;
    refresh_token_key: string;
    token_refresh_route: string;
    aiIconSrc?: string;
    cindyLogoSrc?: string;
    cindyLogoHeight?: number;
    cindyLogoWidth?: number;
    cindyLogoAlt?: string;
    expandedStyle?: any;
    dialogStyle?: any;
    position?: string;
    dialogContentClassName?: string;
    headerStyle?: object;
    headerTitle?: string;
    headerSubtitle?: string;
    headerTitleStyle?: object;
    headerSubtitleStyle?: object;
    helpText?: string;
    sendButtonStyle?: object;
}
declare const CindyChatBot: React.FC<AgenticCindyChatBotProps>;

export { CindyChatBot };
