export interface UpdateInfo { currentVersion: string; latestVersion: string; isUpToDate: boolean; } /** * Check for package updates by comparing current version with npm registry */ export declare function checkForUpdates(packageName: string, currentVersion: string): Promise;