import React from 'react'; import { type GlassVariant } from '../../../lib/glass'; import type { ComposableProps } from '../../../lib/slot'; export interface HoverCardContentProps extends ComposableProps<'div'> { /** * Content. */ children: React.ReactNode; /** * Apply glassmorphism effect to the hover card surface. * @default false */ glass?: GlassVariant; } /** * HoverCardContent Component * * A composable component for the card content of a HoverCard. * Typically used within HoverCard. * * @public * * @example * ```tsx * * * * * *

Card content

*
*
* ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically positioned based on placement. */ export declare const HoverCardContent: React.ForwardRefExoticComponent>; //# sourceMappingURL=HoverCardContent.d.ts.map