import { Extension } from '@tiptap/core'; export interface LineHeightOptions { types: string[]; lineHeights: string[]; } declare module '@tiptap/core' { interface Commands { lineHeight: { setLineHeight: (lineHeight: string) => ReturnType; unsetLineHeight: () => ReturnType; }; } } declare const LineHeight: Extension; export default LineHeight;