import type { RawCommands } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { splitBlock: { /** * Forks a new node from an existing node. */ splitBlock: (options?: { keepMarks?: boolean; }) => ReturnType; }; } } export declare const splitBlock: RawCommands['splitBlock']; //# sourceMappingURL=splitBlock.d.ts.map