/** * Purpose: Semver parsing and comparison utilities for checking whether a newer version is available. */ /** * Check if a version is newer than another * @param newer - Version that might be newer * @param older - Version that might be older * @returns true if newer > older */ export declare function isVersionNewer(newer: string, older: string): boolean; //# sourceMappingURL=version.d.ts.map