export declare class LazySemVer { private _major; private _minor; private _patch; private _preRelease; private _build; constructor(version: string); get major(): number; get minor(): number; get patch(): number; get preRelease(): string; get build(): string; increaseMajor(): this; increaseMinor(): this; increasePatch(): this; get version(): string; }