import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PopconfirmTriggerProps extends ComposableProps<'div'> { /** * Trigger content. */ children: React.ReactNode; } /** * PopconfirmTrigger Component * * A composable component for the trigger element of a Popconfirm. * Typically wraps a button or clickable element. * * @public * * @example * ```tsx * * * * * * Are you sure? * * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Automatically handles click to open popconfirm. */ export declare const PopconfirmTrigger: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopconfirmTrigger.d.ts.map