import { Command } from 'prosemirror-state'; import { MarkType } from 'prosemirror-model'; declare const removeLink: () => Command; declare const applyMark: (type: MarkType, attrs?: Record) => Command; declare const removeMark: (type: MarkType) => Command; export { applyMark, removeLink, removeMark };