import { Command } from '../../../core/commands/Command.ts';
export declare class DeleteColumnCommand implements Command {
    private table;
    private columnIndex;
    private cellsHTML;
    constructor(table: HTMLTableElement, cell: HTMLTableCellElement);
    execute(): void;
}
