export import utils = require("./exportedUtils");
export declare function pullAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export declare function buildAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export declare function testAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export declare function installWorkspace(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export interface DetectedModule {
    name: string;
    buildCommand: string;
    testCommand: string;
    fsLocation: string;
    dependencies: DetectedModule[];
    gitUrl: string;
    gitBranch: string;
    installTypings: boolean;
}
