import { ICommand } from 'valor-unistore-undo'; import { IStoreState, ID, ICellNN } from '../index.data'; import { SpreadSheetRuntime } from '../RuntimeContext'; declare class SetCellDataCommand extends ICommand, ICellNN, SpreadSheetRuntime> { id?: ID; execute: () => boolean; undo: () => void; do: () => void; } export default SetCellDataCommand;