/** * @param {String} projectPath -- context path * * check package.json exist */ declare function checkPackageJson(projectPath: string): Promise; /** * @param {String} projectPath -- context path * * get package.json */ declare function getPackageJson(projectPath: string): Promise; export { checkPackageJson, getPackageJson, };