export declare function getRootProjectGradle(nexus: string, quicksilver: string, group: string, version: string): string;
export declare function getLibProjectGradle(): string;
export declare function getBuildProjectGradle(projectName: string, httpPort: number, httpsPort: number): string;
export declare function getModuleProjectGradle(rootProjectName: string, moduleName: string): string;
export declare function getRunProjectGradle(dependenceProjectName: string): string;
export declare function modifySettingsGradle(projectPath: string): void;
export declare function runGradleTask(projectPath: string, task: string, options?: object): Promise<string>;
export declare function init(projectPath: string): Promise<string>;
export declare function projects(projectPath: string): Promise<string>;
export declare function clean(projectPath: string): Promise<string>;
export declare function build(projectPath: string): Promise<string>;
export declare function qsArchive(projectPath: string, os: string): Promise<string>;
