/** * Query npm registry for the latest version of a package. * * @param name - Full npm package name (e.g. "@outfitter/cli") * @returns Trimmed version string, or `null` if the lookup fails or returns empty */ declare function getLatestVersion(name: string): Promise; export { getLatestVersion };