import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface DescriptionsItemProps extends ComposableProps<'div'> {
/**
* Item content (typically DescriptionsLabel and DescriptionsValue).
*/
children?: React.ReactNode;
/**
* Column span for grid layout
* @default 1
*/
span?: number;
}
/**
* DescriptionsItem Component
*
* A composable component for individual description items.
* Typically wraps DescriptionsLabel and DescriptionsValue.
*
* @public
*
* @example
* ```tsx
*