export interface ChatOptions { webhookUrl: string; webhookConfig?: { method?: 'GET' | 'POST'; headers?: Record; }; target?: string | Element; mode?: 'window' | 'fullscreen'; showWelcomeScreen?: boolean; loadPreviousSession?: boolean; chatInputKey?: string; chatSessionKey?: string; defaultLanguage?: 'en'; initialMessages?: string[]; metadata?: Record; i18n: Record; theme?: {}; }