/** * Semver comparison utilities (no external dependencies). * * Supports: major.minor.patch with optional prerelease (`-rc.1`) and build * metadata (`+build`). Build metadata is stripped before comparison. A * version with a prerelease tag is less than the same version without one. */ /** * Returns true when `latest` is strictly newer than `current`. * Returns false on malformed input or equal versions. */ export declare function isNewerVersion(current: string, latest: string): boolean; //# sourceMappingURL=compare.d.ts.map