import { Constructor } from './util/constructor'; export declare class OrbitalFactory { private static metadata; private static map; /** * Constructs dependency tree and puts commands in their place. * @param cli the CLI module to bootstrap */ static bootstrap(cli: Constructor): typeof OrbitalFactory; /** * This actually tells Node to run your CLI. * @param args pass in your process.argv */ static execute(args?: any[]): boolean; private static tryRunCommand; }