/** * Create version information from a version string */ export declare class Version { full: string; readonly major: string; readonly minor: string; readonly patch: string; constructor(full: string); } export declare const VERSION: Version;