import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface DescriptionsTitleProps extends ComposableProps<'div'> { /** * Title text. */ children: React.ReactNode; } /** * DescriptionsTitle Component * * A composable component for the title of a Descriptions component. * Typically used at the top of Descriptions. * * @public * * @example * ```tsx * * Details * * Name * John Doe * * * ``` * * @remarks * - Wraps the Typography component by default. * - Supports `asChild` prop to merge props with a custom child element. * - Uses title-secondary variant for prominent styling. */ export declare const DescriptionsTitle: React.ForwardRefExoticComponent>; //# sourceMappingURL=DescriptionsTitle.d.ts.map