import type { ReactNode } from 'react'; import type { GridItemProps } from '../Grid'; export type CardGridProps = { children: ReactNode; breakpoints?: GridItemProps; }; declare const CardGrid: ({ children, breakpoints, ...props }: CardGridProps) => import("react/jsx-runtime").JSX.Element; export default CardGrid; //# sourceMappingURL=CardGrid.d.ts.map