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