import { ReactNode } from 'react'; import { MdxComponent } from '../interfaces'; interface CardGroupProps { children: ReactNode; className?: string | null; } /** * 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 declare const CardGroup: MdxComponent; export {};