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