export type BubbleParams = { theme?: BubbleTheme; initMessages: string[]; }; export type BubbleTheme = { darkMode?: boolean; chatWindow?: ChatWindowTheme; button?: ButtonTheme; }; export type TextInputTheme = { backgroundColor?: string; textColor?: string; placeholder?: string; sendButtonColor?: string; }; export type UserMessageTheme = { backgroundColor?: string; textColor?: string; showAvatar?: boolean; avatarSrc?: string; }; export type BotMessageTheme = { backgroundColor?: string; textColor?: string; showAvatar?: boolean; avatarSrc?: string; }; export type ChatWindowTheme = { backgroundColor?: string; height?: number; width?: number; }; export type ButtonTheme = { size?: 'medium' | 'large'; backgroundColor?: string; color?: string; iconCover?: boolean; bottom?: number; right?: number; }; //# sourceMappingURL=types.d.ts.map