import { Extension } from '@tiptap/core'; declare module '@tiptap/core' { interface Commands { cellBackground: { setCellBackground(background: string): ReturnType; unsetCellBackground(): ReturnType; }; } } export declare const TableCellBackground: Extension;