/** * Lightweight semantic version comparison utility. * Replaces semver library to reduce bundle size. * * Supports standard semver format: major.minor.patch[-prerelease][+build] * Pre-release versions are considered lower than release versions. * Build metadata is ignored for comparison purposes. */ /** * Checks if version v1 is greater than version v2. * @param v1 - First version string * @param v2 - Second version string * @returns true if v1 > v2, false otherwise (including if either version is invalid) */ export declare function isVersionGreaterThan(v1: string, v2: string): boolean; //# sourceMappingURL=versionCompare.d.ts.map