import { Extension } from '@tiptap/core'; export interface ParagraphSystemOptions { types: string[]; } declare module '@tiptap/core' { interface Commands { paragraphSystem: { /** * Set paragraph spacing */ setParagraphLayout: (attrs: { before?: string; after?: string; firstLineIndent?: string; hangingIndent?: string; backgroundColor?: string; border?: string; class?: string; id?: string; }) => ReturnType; }; } } export declare const ParagraphSystem: Extension;