/** * 版本号比较 * @returns 1: v1 > v2, -1: v1 < v2, 0: v1 === v2 */ export declare const versionCompare: (v1: string, v2: string) => number;