import React from 'react'; import { type ComposableProps } from '../../../lib/slot'; export interface DescriptionsExtraProps extends ComposableProps<'div'> { /** * Extra content (e.g., action buttons). */ children?: React.ReactNode; } /** * DescriptionsExtra Component * * A composable component for extra content in the Descriptions header. * Typically used alongside DescriptionsTitle. * * @public * * @example * ```tsx * * Details * * * * ... * * ``` * * @remarks * - Wraps the HTML `
` element by default. * - Supports `asChild` prop to merge props with a custom child element. */ export declare const DescriptionsExtra: React.ForwardRefExoticComponent>; //# sourceMappingURL=DescriptionsExtra.d.ts.map