import type { AdoptionGoalMatch } from '../context/LiveAgentContext'; interface AdoptionBubbleProps { goal: AdoptionGoalMatch; onAttend: (goal: AdoptionGoalMatch) => void; appearDelayMs?: number; exitDelayMs?: number; hidden?: boolean; } export declare function AdoptionBubble({ goal, onAttend, appearDelayMs, exitDelayMs, hidden, }: AdoptionBubbleProps): import("react/jsx-runtime").JSX.Element; export {};