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