import type { EditorState, Transaction } from "prosemirror-state"; import type { Editor } from "../../types.js"; export declare function deleteTable(state: EditorState, dispatch?: (tr: Transaction) => void): boolean; export declare const tableMenuModel: () => { content: ({ title: (editor: Editor) => string; type: string; tooltip: string; order: number; action: (editor: Editor) => void; disabled: (editor: Editor) => boolean; icon?: undefined; } | { type: string; order: number; title?: undefined; icon?: undefined; tooltip?: undefined; action?: undefined; disabled?: undefined; } | { title: string; type: string; tooltip: string; order: number; action: (editor: Editor) => boolean; disabled: (editor: Editor) => boolean; icon?: undefined; } | { title: string; type: string; icon: string; tooltip: string; order: number; action: (editor: Editor) => void; disabled: (editor: Editor) => boolean; })[]; }; //# sourceMappingURL=model.d.ts.map