import { ReactNode } from 'react'; export type CardGridDensity = 'default' | 'dense' | 'wide'; export interface CardGridProps { children: ReactNode; /** Column density preset. Defaults to `default`. */ density?: CardGridDensity; className?: string; } /** * Responsive grid for {@link GridTile} cards. Use in place of a full-width * `space-y` stack for sparse, browseable object lists so they fill the * horizontal space on wide containers instead of rendering one-per-row. */ export declare function CardGrid({ children, density, className, }: CardGridProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=card-grid.d.ts.map