import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface PopconfirmDescriptionProps extends ComposableProps<'div'> { /** * Description content. */ children: React.ReactNode; } /** * PopconfirmDescription Component * * A composable component for the description of a Popconfirm. * Typically used within PopconfirmContent. * * @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 styled with Typography component. */ export declare const PopconfirmDescription: React.ForwardRefExoticComponent>; //# sourceMappingURL=PopconfirmDescription.d.ts.map