import { MarkType } from '@sse-editor/pm/model'; import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { unsetMark: { /** * Remove all marks in the current selection. */ unsetMark: (typeOrName: string | MarkType, options?: { /** * Removes the mark even across the current selection. Defaults to `false`. */ extendEmptyMarkRange?: boolean; }) => ReturnType; }; } } export declare const unsetMark: RawCommands['unsetMark'];