import { Types } from '@syllepsis/adapter'; declare const NODE_NAME: { TABLE: string; TABLE_CELL: string; TABLE_HEADER: string; TABLE_ROW: string; }; interface ITableProps { allowTableNodeSelection: boolean; defaultCellWidth: number; useTableHeader: boolean; cellAttributes: Types.StringMap<{ default: any; getFromDOM: (dom: HTMLElement) => any; setDOMAttr: (value: string, attrs: Types.StringMap) => any; }>; } declare const TABLE_CONFIG: ITableProps; export { ITableProps, NODE_NAME, TABLE_CONFIG };