import { Dialog } from "fwtoolkit"; import type { Node } from "prosemirror-model"; import type { EditorState } from "prosemirror-state"; import type { Editor } from "../types.js"; export declare class TableDialog { editor: Editor; dialog: InstanceType | false; constructor(editor: Editor); init(): void; markInsertTable(cell: HTMLTableCellElement, className: string): { colCount: number; rowCount: number; }; insertTableDialog(): void; } export declare class TableConfigurationDialog { editor: Editor; dialog: InstanceType | false; aligned: string; width: string; layout: string; category: string; caption: boolean; constructor(editor: Editor); init(): void; findTable(state: EditorState): { table: Node | false; tablePos?: number; }; submitForm(): void; insertDialog(): void; } //# sourceMappingURL=table.d.ts.map