import type { BubbleProps } from './features/bubble'; import type { PopupProps } from './features/popup'; import type { BotProps } from './components/Bot'; export interface AvatarConfig { url: string; isEnabled: boolean; } export interface AvatarProps { hostAvatar?: AvatarConfig; guestAvatar?: AvatarConfig; } export interface BubbleThemeConfig { color?: string; backgroundColor?: string; isMessageActionBarEnabled?: boolean; isCorrectivePopupEnabled?: boolean; } export interface BubbleThemeProps { hostBubbles?: BubbleThemeConfig; guestBubbles?: BubbleThemeConfig; } export declare const MAX_INITIAL_PROMPTS = 8; export declare const defaultBotProps: BotProps; export declare const defaultPopupProps: PopupProps; export declare const defaultBubbleProps: BubbleProps; //# sourceMappingURL=constants.d.ts.map