import * as HoverCardPrimitive from '@radix-ui/react-hover-card'; /** * Rich hover content — a profile preview, a stat breakdown, a record card. * * WHEN NOT TO USE `Tooltip` INSTEAD. A tooltip is `role="tooltip"`: a short, * static description OF its trigger. Anything interactive inside one is * unreachable by keyboard and is announced as part of the trigger's * description, so a disclosure, link or button in a tooltip is an * accessibility bug. A hover card is a non-modal popover that happens to open * on hover: it may hold interactive content, stays open while the pointer is * inside it, and opens on focus for keyboard users. * * Text only, no interaction -> `Tooltip`. Anything clickable or expandable -> * `HoverCard`. */ declare const HoverCard: import("react").FC; declare const HoverCardTrigger: import("react").ForwardRefExoticComponent>; declare const HoverCardContent: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export { HoverCard, HoverCardTrigger, HoverCardContent }; //# sourceMappingURL=hover-card.d.ts.map