import { AbstractSkeletosAction } from "./AbstractSkeletosAction"; /** * A simple action that executes just one command. */ export declare abstract class SimpleSkeletosAction extends AbstractSkeletosAction { protected static DO_EXECUTE_COMMAND_KEY: string; /** * Override this to do something */ protected abstract doExecute(): void; protected getCommands(): object; }