import '@tiptap/extension-text-style'; import { Extension } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { fontSize: { /** * Set the font size */ setFontSize: (fontSize: string) => ReturnType; /** * Unset the font size */ unsetFontSize: () => ReturnType; }; } } interface FontSizeOptions { types: string[]; } export declare const TuiFontSize: Extension; export {};