import { Extension } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { lineHeight: { /** * Set the line height */ setLineHeight: (lineHeight: string) => ReturnType; /** * Unset the line height */ unsetLineHeight: () => ReturnType; }; } } export declare const LineHeight: Extension;