import React from 'react'; import { LinkWrapperProps } from '../links/link-wrapper/link-wrapper'; export type BodyProps = { children?: any; styles?: { root: {}; }; text?: string; maxLineCount?: number; elementType?: React.ElementType; setInnerHTML?: boolean; linkProps?: LinkWrapperProps; truncateText?: string; textTrunateElementType?: string; textTruncateChild?: string; useTextTruncate?: boolean; }; declare const Body: React.FC; export default Body;