import { Command } from '../../../core/commands/Command.ts';
import { HTMLEditor } from '../../../core/HTMLEditor';
export declare class AddColumnCommand implements Command {
    private table;
    private cell;
    private before;
    private editor?;
    constructor(table: HTMLElement, cell: HTMLElement, before: boolean, editor?: HTMLEditor);
    execute(): void;
}
