import * as React from 'react'; import { SemanticShorthandContent, SemanticShorthandItem, SemanticVERTICALALIGNMENTS } from '../..'; import { ItemDescriptionProps } from './ItemDescription'; import { ItemExtraProps } from './ItemExtra'; import { ItemHeaderProps } from './ItemHeader'; import { ItemMetaProps } from './ItemMeta'; export interface ItemContentProps { [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 ItemDescription component. */ description?: SemanticShorthandItem; /** Shorthand for ItemExtra component. */ extra?: SemanticShorthandItem; /** Shorthand for ItemHeader component. */ header?: SemanticShorthandItem; /** Shorthand for ItemMeta component. */ meta?: SemanticShorthandItem; /** Content can specify its vertical alignment. */ verticalAlign?: SemanticVERTICALALIGNMENTS; } declare const ItemContent: React.ComponentClass; export default ItemContent;