import { TableRowOptions } from '@tiptap/extension-table-row'; import { TableCellOptions } from '@tiptap/extension-table-cell'; import { TableHeaderOptions } from '@tiptap/extension-table-header'; import { TableCellBackgroundOptions } from './cell-background'; import { GeneralOptions } from '../../type'; 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 declare const Table: import('@tiptap/core').Node; export default Table;