import { BaseCommand } from './base-command'; import { EditorHost } from '../core'; import { SelectionPlugin } from '../plugins'; export declare class ClearSelectionCommand extends BaseCommand { name: string; private previousSelectionIds; selectionPlugin: SelectionPlugin | null; constructor(host: EditorHost); execute(): void; undo(): void; }