import type { LexicalEditor } from 'lexical'; import type { TablePluginOptions } from '../types'; /** * Register table support. * Wraps @lexical/table functionality. */ export declare function registerTablePlugin(editor: LexicalEditor, _options?: TablePluginOptions): Promise<() => void>; /** * Insert a new table at the current selection. */ export declare function insertTable(editor: LexicalEditor, rows?: number, columns?: number): Promise;