import { Node } from '@tiptap/core'; export interface SectionOptions { HTMLAttributes: Record; } declare module '@tiptap/core' { interface Commands { section: { /** * Insert a section break */ insertSectionBreak: () => ReturnType; }; } } export declare const Section: Node;