import { TableCellOptions, TableRowOptions, TableHeaderOptions } from '@tiptap/extension-table'; import { TableCellBackgroundOptions } from './TableCellBackground'; import { GeneralOptions } from '../../types'; export interface TableOptions extends GeneralOptions { HTMLAttributes: Record; resizable: boolean; handleWidth: number; cellMinWidth: number; lastColumnResizable: boolean; allowTableNodeSelection: boolean; /** options for table rows */ tableRow: Partial; /** options for table headers */ tableHeader: Partial; /** options for table cells */ tableCell: Partial; /** options for table cell background */ tableCellBackground: Partial; } export * from './components/RichTextTable'; export declare const Table: import('@tiptap/core').Node;