import { EditorState, Transaction } from "prosemirror-state"; export declare function upsertTagToHighlight(editorState: EditorState, highlight: { from: number; to: number; }, tagId: string, tr?: Transaction): Transaction; export declare function removeTagFromHighlight(editorState: EditorState, highlight: { from: number; to: number; }, tagId: string, tr?: Transaction): Transaction;