import { ICommand } from 'valor-unistore-undo'; import { IStoreState } from '../index.data'; import { SpreadSheetRuntime } from '../RuntimeContext'; declare class RecalculateCommand extends ICommand { execute: () => boolean; undo: () => void; } export default RecalculateCommand;