import { BubbleTheme } from '../types'; import { observersConfigType } from '../../../components/Bot'; export type BubbleProps = { chatflowid: string; apiHost?: string; onRequest?: (request: RequestInit) => Promise; chatflowConfig?: Record; theme?: BubbleTheme; observersConfig?: observersConfigType; onSubmit?: (body: any) => any; onOpen?: () => void; onClose?: () => void; }; export declare const Bubble: (props: BubbleProps) => import("solid-js").JSX.Element; //# sourceMappingURL=Bubble.d.ts.map