import { Command } from 'firmament-yargs';
import { ModuleManagement } from '../../interfaces/ModuleManagement';
export declare class ModuleManagementCommandImpl implements Command {
    private moduleManagement;
    aliases: string[];
    command: string;
    commandDesc: string;
    handler: (argv: any) => void;
    options: any;
    subCommands: Command[];
    constructor(moduleManagement: ModuleManagement);
    private buildCommandTree;
    private pushInstallModuleCommand;
}
