import { Extension } from '@tiptap/core'; export interface TuiFontColorOptions { 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 TuiFontColor: Extension;