import * as React from 'react'; import { SemanticShorthandContent, SemanticShorthandItem } from '../..'; import { CardDescriptionProps } from './CardDescription'; import { CardHeaderProps } from './CardHeader'; import { CardMetaProps } from './CardMeta'; export interface CardContentProps { [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; /** Shorthand for CardDescription. */ description?: SemanticShorthandItem; /** A card can contain extra content meant to be formatted separately from the main content. */ extra?: boolean; /** Shorthand for CardHeader. */ header?: SemanticShorthandItem; /** Shorthand for CardMeta. */ meta?: SemanticShorthandItem; /** A card content can adjust its text alignment. */ textAlign?: 'center' | 'left' | 'right'; } declare const CardContent: React.StatelessComponent; export default CardContent;