/** * @author Leonid Vinikov * @description CommandInternal, is used when part of the logic needed to be in the command but not represent a user action. */ import { CommandBase } from "./command-base"; export declare class CommandInternal extends CommandBase { static getName(): string; }