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