export declare class SemVer {
    readonly major: number;
    readonly minor: number;
    readonly fix: number;
    constructor(major: number, minor: number, fix: number);
    static readonly REGEX: RegExp;
    static valueOf(text: string): SemVer;
    compareTo(other: SemVer): number;
    isOlderThan(other: SemVer): boolean;
    isSameAs(other: SemVer): boolean;
    isSameOrNewerThan(other: SemVer): boolean;
}
