import type { ComponentType } from 'react'; import type { Mark } from '@atlaskit/editor-prosemirror/model'; import Code from './code'; import Em from './em'; import Link from './link'; import Strike from './strike'; import Strong from './strong'; import Subsup from './subsup'; import TextColor from './textColor'; import BackgroundColor from './backgroundColor'; import Underline from './underline'; import Breakout from './breakout'; import UnsupportedMark from './unsupportedMark'; import UnsupportedNodeAttribute from './unsupportedNodeAttribute'; import DataConsumer from './data-consumer'; import FragmentMark from './fragment'; import Annotation, { isAnnotationMark } from './annotation'; import Border from './border'; import FontSize from './fontSize'; export declare const markToReact: { [key: string]: ComponentType>; }; export declare const toReact: (mark: Mark) => ComponentType>; export { Code, Em, Link, Strike, Strong, Subsup, TextColor, BackgroundColor, Underline, Breakout, Annotation, Border, FontSize, UnsupportedMark, isAnnotationMark, UnsupportedNodeAttribute, DataConsumer, FragmentMark, };