/** * @author Leonid Vinikov * @description CommandPublic represents a USER action, every class which inherit from this class will USER action. * */ import { CommandBase } from "./command-base"; export declare class CommandPublic extends CommandBase { static getName(): string; }