import { HTMLEditor } from '../../../core/HTMLEditor';
export declare class TableOperations {
static addRow(table: HTMLElement, cell: HTMLElement, before?: boolean, editor?: HTMLEditor): HTMLElement;
static addColumn(table: HTMLElement, cell: HTMLElement, before?: boolean, editor?: HTMLEditor): HTMLElement[];
static deleteRow(table: HTMLElement, row: HTMLElement): void;
static deleteColumn(table: HTMLElement, columnIndex: number): void;
static deleteTable(table: HTMLElement): void;
}