import * as React from 'react';
import { BodyStyles, NewsBodyStyles } from '../../../entities/CardStylesEntities';
import { CardEntity } from '../../../entities/CardEntity';
export interface NewsCardFullBodyProps {
    bodyStyles?: BodyStyles;
    newsBodyStyle?: NewsBodyStyles;
    item: CardEntity;
}
export declare const NewsCardFullBody: (props: NewsCardFullBodyProps) => React.ReactElement<NewsCardFullBodyProps>;
