/**
* The constants of the enumeration identify the system for measuring distances and weight.
* @enum {number}
*/
export declare enum eMeasureSystem {
    /**
    * Metric system of measurement, where things are measured in meters and grams
    */
    METRIC = 0,
    /**
    * Imperial System of Measurement, where things are measured in feet, inches and pounds
    */
    IMPERIAL = 1
}
