import { HTMLEditor } from '../../../core/HTMLEditor';
import { Command } from '../../../core/commands/Command';
export interface TableResponsiveOptions {
breakpoint?: number;
enableScroll?: boolean;
enableTouch?: boolean;
enableCards?: boolean;
}
export declare class ApplyTableResponsiveCommand implements Command {
private table;
private options;
private previousState;
constructor(_editor: HTMLEditor, table: HTMLElement, options: TableResponsiveOptions);
execute(): void;
undo(): void;
}