/** * Update check for Hippo-Memory-PI extension * * Fetches the latest version from npm registry and compares with current version * to notify users when an update is available. */ export interface UpdateInfo { currentVersion: string; latestVersion: string; updateAvailable: boolean; } /** * Check if an update is available * Returns null if check fails (silently) */ export declare function checkForUpdates(_pi: unknown): Promise; //# sourceMappingURL=update-check.d.ts.map