import { default as React } from 'react'; import { ChatContextValue } from './ChatBubble.types'; export declare const ChatBubbleContext: React.Context; interface ChatBubbleProviderProps { children: React.ReactNode; agentId?: string; apiErrorMessage?: string; /** Initial greeting message shown by the assistant when the chat first loads */ initialMessage?: string; } export declare const ChatBubbleProvider: React.FC; export {};