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