export declare class Version { static get(): VersionStr; static parsed(version?: VersionStr): IVersion; static tokenized(version?: VersionStr): IVersionTokens; } export interface IVersion { readonly major: string; readonly minor: string; readonly sub: string; } export interface IVersionTokens { readonly version_major: string; readonly version_minor: string; readonly version: string; } export declare type VersionStr = string;