import { RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { setNodeSelection: { /** * Creates a NodeSelection. */ setNodeSelection: (position: number) => ReturnType; }; } } export declare const setNodeSelection: RawCommands['setNodeSelection'];