import { AiAssistantNudgeProps } from '../types'; /** * Contextual nudge anchored where the assistant lives — a compact bubble growing out of * the Fab, same spot and motion as the Panel but free-height and one-click dismissable. * No backdrop, no focus trap: the ongoing interaction is never blocked. Host apps use it * for proactive one-shot messages (onboarding hints…) without opening the full panel. * * Multi-step content (`content` as an array + `labels`) brings a built-in stepper * (n/N, previous/next, finish on the last step). The step is CONTROLLED (`activeStep` / * `onStepChange`) so the host can mirror it — e.g. moving a spotlight per step. */ declare const AiAssistantNudge: ({ open, title, onClose, content, children, activeStep, onStepChange, labels, dataTestId, }: AiAssistantNudgeProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default AiAssistantNudge;