import { ICommand } from 'valor-unistore-undo'; import { SpreadSheetRuntime } from '../RuntimeContext'; import { ISelection, IStoreState } from '../index.data'; interface IUndoContext { lastSelection: ISelection | null; } declare class ClearSelectionCommand extends ICommand { execute: () => boolean; undo: () => void; } export default ClearSelectionCommand;