/// import { IAnnotation } from '../../types/index'; export interface ContentProps { style?: {}; className?: ''; annotation: IAnnotation; } export default function Content(props: ContentProps): JSX.Element | null;