import { ParsedArgs } from '../argument/parsed-args'; import { MappedCommands } from './mapped-commands'; export declare class CommandExecutor { /** * public method to execute the command with params * @param args parsed arguments from ArgumentParser * @param commands map of commands from CommandMapper */ static usedOptions: string[]; static execute(args: ParsedArgs, commands: MappedCommands): void; private static getParameters; private static injectOptions; private static getOption; }