import { ParseOptions } from '@sse-editor/pm/model'; import { Content, Range, RawCommands } from '../types.js'; declare module '@sse-editor/core' { interface Commands { insertContentAt: { /** * Insert a node or string of HTML at a specific position. */ insertContentAt: (position: number | Range, value: Content, options?: { parseOptions?: ParseOptions; updateSelection?: boolean; applyInputRules?: boolean; applyPasteRules?: boolean; }) => ReturnType; }; } } export declare const insertContentAt: RawCommands['insertContentAt'];