import React from 'react'; import { BaseStyles } from '../../../../utils/types/base-styles.type'; export type ArticleBodyProps = { styles?: BaseStyles; text?: string; maxLineCount?: number; truncateText?: string; elementType?: React.ElementType; textTrunateElementType?: string; textTruncateChild?: string; useTextTruncate?: boolean; children?: any; setInnerHTML?: boolean; }; declare const ArticleBody: React.FC; export default ArticleBody;