import * as React from 'react'; import { SemanticShorthandCollection, SemanticShorthandContent, SemanticWIDTHS } from '../..'; import { CardProps } from './Card'; export interface CardGroupProps { [key: string]: any; /** An element type to render as (string or function). */ as?: any; /** Primary content. */ children?: React.ReactNode; /** Additional classes. */ className?: string; /** Shorthand for primary content. */ content?: SemanticShorthandContent; /** A group of cards can double its column width for mobile. */ doubling?: boolean; /** Shorthand array of props for Card. */ items?: SemanticShorthandCollection; /** A group of cards can set how many cards should exist in a row. */ itemsPerRow?: SemanticWIDTHS; /** A group of cards can automatically stack rows to a single columns on mobile devices. */ stackable?: boolean; /** A card group can adjust its text alignment. */ textAlign?: 'center' | 'left' | 'right'; } declare const CardGroup: React.StatelessComponent; export default CardGroup;