import { ReactNode } from 'react'; import { AdaptiveGridProps } from './types.ts'; /** * AdaptiveGrid is a self-organizing grid component that automatically adjusts * its layout based on content and available space. * * @example * ```tsx * * {items.map(item => ( * {item.content} * ))} * * ``` */ export declare function AdaptiveGrid({ children, minColumnWidth, maxColumns, gap, autoRows, autoFlow, masonry, className, style, }: AdaptiveGridProps): ReactNode; export type { AdaptiveGridProps };