/**
* Fetches the latest version of an npm package from the registry
* @parampackageName - The name of the package to check
* @returns The latest version string, or null if not found
*/exportdeclarefunctiongetLatestVersion(packageName: string): Promise<string | null>;