import { MarkType } from '@sse-editor/pm/model'; import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { extendMarkRange: { /** * Extends the text selection to the current mark. */ extendMarkRange: (typeOrName: string | MarkType, attributes?: Record) => ReturnType; }; } } export declare const extendMarkRange: RawCommands['extendMarkRange'];