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