/**
 * Create version information from a version string
 *
 * @example
 * VERSION.full  // Returns: 1.2.3
 * VERSION.major // Returns: 1
 * VERSION.minor // Returns: 2
 * VERSION.patch // Returns: 3
 */
export declare class Version {
    full: string;
    readonly major: string;
    readonly minor: string;
    readonly patch: string;
    constructor(full: string);
}
export declare const VERSION: Version;
