import { default as React } from 'react'; import { ChatBubbleConfig } from './ChatBubble.types'; interface ChatBubbleComponentProps { config: ChatBubbleConfig; isOpen?: boolean; } /** * Internal ChatBubble component that must be rendered inside a ChatBubbleProvider. */ export declare const ChatBubbleComponent: React.FC; export {};