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