import type { GridProps } from '@mui/material'; import React from 'react'; import type { SimpleCardProps } from '../SimpleCard/index.js'; /** Props for {@link SimpleCardGrid}. */ export interface SimpleCardGridProps extends GridProps { cards?: SimpleCardProps[]; } /** Responsive grid that renders a collection of {@link SimpleCard} items. */ export declare const SimpleCardGrid: React.FC; //# sourceMappingURL=SimpleCardGrid.d.ts.map