import React from 'react'; import { Reference } from './components/ReferenceTooltip'; declare const ArticleBody: React.FC; interface ArticleBodyProps { body: string; references: Reference[]; onLoadingEnd?: (body: HTMLDivElement) => void; registerEventForFloats?: () => void; onFigureCarouselLinkClick?: (fullViewHref: string) => void; onReferenceToolTipLinkClick?: (event: any, id: string) => void; } export { ArticleBody };