import '@tiptap/extension-text-style'; import { Extension } from '@tiptap/core'; interface FontColorOptions { types: string[]; } declare module '@tiptap/core' { interface Commands { fontColor: { /** * Set the font color */ setFontColor: (fontColor: string) => ReturnType; /** * Unset the font color */ unsetFontColor: () => ReturnType; }; } } export declare const FontColor: Extension; export {};