import '@tiptap/extension-text-style'; import { Extension } from '@tiptap/core'; interface BackgroundColorOptions { types: string[]; } declare module '@tiptap/core' { interface Commands { backgroundColor: { /** * Set the background color */ setBackgroundColor: (backgroundColor: string) => ReturnType; /** * Unset the background color */ unsetBackgroundColor: () => ReturnType; }; } } export declare const BackgroundColor: Extension; export {};