import * as React from 'react'; import { SemanticShorthandContent, SemanticShorthandItem } from '../..'; import { FeedDateProps } from './FeedDate'; import { FeedExtraProps } from './FeedExtra'; import { FeedMetaProps } from './FeedMeta'; import { FeedSummaryProps } from './FeedSummary'; export interface FeedContentProps { [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; /** An event can contain a date. */ date?: SemanticShorthandItem; /** Shorthand for FeedExtra with images. */ extraImages?: SemanticShorthandItem; /** Shorthand for FeedExtra with text. */ extraText?: SemanticShorthandItem; /** Shorthand for FeedMeta. */ meta?: SemanticShorthandItem; /** Shorthand for FeedSummary. */ summary?: SemanticShorthandItem; } declare const FeedContent: React.StatelessComponent; export default FeedContent;