/** * Get installed path of globally or locally name package. * npm@7 workspace support, maybe pass [projectCwd, `process.cwd()`] * @param name package name * @param cwds If you are using it for some sub-directory pass `cwd` to be where the `node_modules` * @returns the absolute path of package installed */ export declare const getPackageInstalledPath: (name: string, cwds: string[]) => Promise;