import { Extension } from '@tiptap/core'; export interface TableCellBackgroundOptions { HTMLAttributes: Record; types?: any; } declare module '@tiptap/core' { interface Commands { tableCellBackground: { setTableCellBackground: (color: string) => ReturnType; unsetTableCellBackground: () => ReturnType; }; } } export declare const TableCellBackground: Extension;