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