import { ICommand } from 'valor-unistore-undo'; import { IStoreState, ID } from '../index.data'; import { SpreadSheetRuntime } from '../RuntimeContext'; export interface MoveRowCommandParams { type: 'up' | 'down'; } declare class MoveRowCommand extends ICommand { isTreeRow?: boolean; rowIndexes?: number[]; cellId: ID | null; execute: () => boolean; undo: () => void; } export default MoveRowCommand;