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