import * as React from 'react'; import { MutableRefObject } from 'react'; import { EditorState } from 'prosemirror-state'; interface CreatePopupProps { editorWrapper: MutableRefObject; marker: Element; } declare const _default: { name: string; getMarker: (editorWrapper: MutableRefObject) => Element | null; condition: ({ state }: { state: EditorState; }) => any; component: React.FunctionComponent; }; export default _default;