import * as React from 'react'
import { HtmlImageProps, SemanticShorthandContent, SemanticShorthandItem } from '../../generic'
import { IconProps } from '../../elements/Icon'
export interface FeedLabelProps extends StrictFeedLabelProps {
[key: string]: any
}
export interface StrictFeedLabelProps {
/** 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 icon label. */
icon?: SemanticShorthandItem
/** An event can contain image label. */
image?: SemanticShorthandItem
}
declare const FeedLabel: React.FC
export default FeedLabel