import { Command } from "../workFlow/command"; import { StateItem } from "./stateItem"; export declare class CommandState extends StateItem { protected _currentCommandInNew: boolean; get currentCommandInNew(): boolean; get oldCommand(): Command; get newCommand(): Command; constructor(oldCommand: Command, newCommand: Command); }