import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface DescriptionsValueProps extends ComposableProps<'div'> { /** * Value content. */ children: React.ReactNode; } /** * DescriptionsValue Component * * A composable component for the value of a description item. * Typically used within DescriptionsItem. * * @public * * @example * ```tsx * * Name * John Doe * * ``` * * @remarks * - Wraps the Typography component by default. * - Supports `asChild` prop to merge props with a custom child element. * - Uses body-primary-regular variant for value styling. */ export declare const DescriptionsValue: React.ForwardRefExoticComponent>; //# sourceMappingURL=DescriptionsValue.d.ts.map