import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PopconfirmIconProps extends ComposableProps<'div'> { /** * Custom icon name */ icon?: string; /** * Custom icon content (when using asChild) */ children?: React.ReactNode; } /** * PopconfirmIcon Component * * A composable component for the icon in 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 styled with warning color. */ export declare const PopconfirmIcon: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopconfirmIcon.d.ts.map