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