import { Log, LogFn } from "@sap/adp-common";
export declare function createDirectoryIfNotExist(directory: string): void;
export declare function installDependencies(projectPath: string): Promise<void>;
export declare function findUniqueDirName(basePath: string, dirName: string): string;
export declare function getPackageJSONInfo(logger: Log<LogFn>): {
    name: string;
    version: string;
};
export declare function writeResult(id: string, result: string): void;
