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