import { ICommand } from '../libs/commands/ICommand'; export declare class ModulesCommand implements ICommand { command: string; aliases: string; describe: string; builder(yargs: any): any; beforeStartup(): void; handler(argv: any): Promise; }