export declare function installedVersion(): string | null; /** -1 / 0 / 1 on the numeric parts only; pre-release tags are ignored. */ export declare function cmpSemver(a: string, b: string): number; /** * Returns the notice text when a newer version is published, otherwise null. * Never throws. */ export declare function updateNotice(opts?: { installed?: string | null; timeoutMs?: number; }): Promise; /** Fire-and-forget: prints to stderr if there is something to say. */ export declare function announceUpdate(): void; //# sourceMappingURL=update-check.d.ts.map