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
*