export declare type CompareOperator = '>' | '>=' | '=' | '<' | '<='; export declare function compareVersions(v1: string, v2: string, operator: CompareOperator): boolean;