/** * * @param firstVersion a version * @param secondVersion another version * * @return -1 if first is greater * 0 if versions match * 1 if second is greater */ export declare function compareVersions(firstVersion: string, secondVersion: string): 1 | 0 | -1;