import React from 'react';
import { type ComposableProps } from '../../../lib/slot';
export interface DescriptionsLabelProps extends ComposableProps<'div'> {
/**
* Label text.
*/
children: React.ReactNode;
}
/**
* DescriptionsLabel Component
*
* A composable component for the label 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-secondary-regular variant for label styling.
*/
export declare const DescriptionsLabel: React.ForwardRefExoticComponent>;
//# sourceMappingURL=DescriptionsLabel.d.ts.map