import React from 'react'; import type { ComposableProps } from '../../../lib/slot'; export interface HoverCardTriggerProps extends ComposableProps<'div'> { /** * Trigger content. */ children: React.ReactNode; } /** * HoverCardTrigger Component * * A composable component for the trigger element of a HoverCard. * Typically wraps a hoverable element. * * @public * * @example * ```tsx * * * * * *

Card content

*
*
* ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles mouse enter/leave to show/hide card. */ export declare const HoverCardTrigger: React.ForwardRefExoticComponent>; //# sourceMappingURL=HoverCardTrigger.d.ts.map