import type { EditorState, Command } from 'prosemirror-state'; declare class Mark { name: string; constructor(name: string); apply(): Command; toggle(): Command; isActive(state: EditorState): boolean; canExecute(state: EditorState): boolean; } export default Mark;