import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PopconfirmArrowProps extends ComposableProps<'div'> { /** * Arrow content (optional). */ children?: React.ReactNode; } /** * PopconfirmArrow Component * * A composable component for the arrow/tip of a Popconfirm. * Typically used within PopconfirmContent. * * @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 positioned based on placement. */ export declare const PopconfirmArrow: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopconfirmArrow.d.ts.map