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 * * * Name * John Doe * * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. * - Supports column span for grid layouts. */ export declare const DescriptionsItem: React.ForwardRefExoticComponent>; //# sourceMappingURL=DescriptionsItem.d.ts.map