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