export interface Command { id: string; label: string; execute(state: TState): TState; undo(state: TState): TState; } //# sourceMappingURL=command.d.ts.map