/**
 * Checks if yarn is available
 * we can't check with `npm ls -g yarn --depth=0` as yarn can be installed locally
 *
 * @param {string} packageDir
 * @return {boolean}
 */
export declare function hasYarn(packageDir: string): Promise<boolean>;
