declare type PM = "npm" | "yarn" | "pnpm"; declare const detect: ({ cwd }?: { cwd?: string | undefined; }) => Promise; declare function getNpmVersion(pm: PM): Promise; declare function clearCache(): void; export { PM, clearCache, detect, getNpmVersion };