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