/** * [WHO]: HoverCard — lightweight preview surface for non-critical info. * [FROM]: React + @radix-ui/react-hover-card + framer-motion + getThemeFromDocument. * [TO]: sparkdesign package consumers; output of CLI `add hover-card` when registered. * [HERE]: registry/basic/hover-card.tsx — Spark Design source; keep aligned with the main library. * * [PROTOCOL]: * 1. Keep this P3 header in sync when the public contract changes. * 2. Update module AGENTS.md (P2) and root AGENTS.md (P1) when boundaries change. * 3. Follow design tokens and explicit type exports. */ import * as React from 'react'; import * as HoverCardPrimitive from '@radix-ui/react-hover-card'; declare const HoverCard: React.FC; declare const HoverCardTrigger: React.ForwardRefExoticComponent>; export interface HoverCardContentProps extends React.ComponentPropsWithoutRef { /** When provided (e.g. from ThemeStyleProvider), used for portal wrapper */ dataStyle?: string; dataTheme?: string; } declare const HoverCardContent: React.ForwardRefExoticComponent>; export { HoverCard, HoverCardTrigger, HoverCardContent };