import * as RadixHC from "@radix-ui/react-hover-card"; import { type FC } from "react"; import { type Props as CardProps } from "../Card/Card"; type StaticComponents = { Trigger: typeof RadixHC.Trigger; Root: typeof RadixHC.Root; Arrow: typeof RadixHC.Arrow; Content: FC; Card: FC; }; type ContentProps = { /** * An optional element to which to render the hover card in through a portal. * * When omitted the hovercard will be rendered into the document.body. */ container?: RadixHC.HoverCardPortalProps["container"]; } & RadixHC.HoverCardContentProps; /** * A collection of components to construct a hover card. * * @example * * ```tsx * * * * Hover me * * * * * hover card content * * * * ``` */ export declare const HoverCard: StaticComponents; export {};