import { ComponentPropsWithoutRef } from 'react'; /** * Props for the DetailsContent component * @extends ComponentPropsWithoutRef<"div"> */ export type DetailsContentProps = ComponentPropsWithoutRef<"div"> & { /** * Fixed height for the content area */ height?: string | number; /** * Maximum height for the content area */ maxHeight?: string | number; }; /** * DetailsContent component for the expandable content area of a Details section. * * Features: * - Expandable and collapsible content area * - Smooth animations for height transitions * - Configurable height and maxHeight constraints * - Automatic overflow handling when height is constrained * - Proper ARIA associations with the summary * - Responsive design with flexible layout * * @example * *

This content will be constrained to 300px max height

*
*/ export declare const DetailsContent: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & { /** * Fixed height for the content area */ height?: string | number; /** * Maximum height for the content area */ maxHeight?: string | number; } & import('react').RefAttributes>;