/** * The `` component is used in lieu of a `` container * when laying out a set of `` components on a page. It * allows the cards to align in a grid at 8 columns at medium and * above breakpoints, and set the grid to condensed at the small * breakpoint. */ export function CardGroup({ children, className, ...rest }: { [x: string]: any; children: any; className: any; }): React.FunctionComponentElement>>; export namespace CardGroup { namespace propTypes { let children: PropTypes.Requireable; let className: PropTypes.Requireable; } } import React from 'react'; import PropTypes from 'prop-types';