import type { Mark, MarkType } from '@atlaskit/editor-prosemirror/model'; import type { EditorCommand } from '../types'; /** * A wrapper around ProseMirror removeMark and removeStoredMark, which handles mark removal in text, CellSelections and cursor stored marks. */ export declare const removeMark: (mark: MarkType | Mark) => EditorCommand;