import { HTMLEditor } from '../../../core/HTMLEditor';
import { Command } from '../../../core/commands/Command';
export declare class ClearTableCommand implements Command {
private table;
private previousContents;
constructor(_editor: HTMLEditor, table: HTMLElement);
execute(): void;
undo(): void;
}