import { Command } from '../../../core/commands/Command.ts';
export declare class StyleTableCellCommand implements Command {
    private cell;
    private newStyle;
    constructor(cell: HTMLTableCellElement, style: Partial<CSSStyleDeclaration>);
    execute(): void;
}
