import React from 'react'; import { type GlassVariant } from '../../../lib/glass'; import { type ComposableProps } from '../../../lib/slot'; export interface PopconfirmContentProps extends ComposableProps<'div'> { /** * Content (typically PopconfirmTitle, PopconfirmDescription, PopconfirmActions). */ children: React.ReactNode; /** * Glass morphism variant */ glass?: GlassVariant; } /** * PopconfirmContent Component * * A composable component for the popconfirm popup content. * Typically wraps PopconfirmTitle, PopconfirmDescription, and PopconfirmActions. * * @public * * @example * ```tsx * * Are you sure? * This action cannot be undone. * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles positioning and click-outside closing. */ export declare const PopconfirmContent: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopconfirmContent.d.ts.map