import React from 'react'; import { FlintImageList as FlintImageListElement } from '@getufy/flint-ui/image-list/flint-image-list'; /** * A container that displays images in an organized grid layout. Supports standard, quilted, woven, and masonry variants. * * @slot (default) - Place `flint-image-list-item` elements here. */ export interface FlintImageListProps extends React.HTMLAttributes { /** * Layout variant * Allowed values: 'standard' | 'quilted' | 'woven' | 'masonry' */ variant?: 'standard' | 'quilted' | 'woven' | 'masonry'; /** Number of columns */ cols?: number; /** Gap between items (in px) */ gap?: number; /** Row height for non-masonry variants (in px). Ignored when autoRows=true. */ rowHeight?: number; /** When true, row height is automatic (use with bar-position="below") */ autoRows?: boolean; } export declare const FlintImageList: React.ForwardRefExoticComponent>;