import { EditorState, Transaction } from "prosemirror-state"; import { Range } from "./types"; export declare function createRange(editorState: EditorState, range: Range, tr?: Transaction): Transaction; export declare function deleteRange(editorState: EditorState, rangeId: Range["id"], tr?: Transaction): Transaction;