/** Describes the type of this unit and indicates which field contains the unit information. This is an ‘open’ enum. */ export declare const MeasurementUnitUnitType: { readonly TypeCustom: "TYPE_CUSTOM"; readonly TypeArea: "TYPE_AREA"; readonly TypeLength: "TYPE_LENGTH"; readonly TypeVolume: "TYPE_VOLUME"; readonly TypeWeight: "TYPE_WEIGHT"; readonly TypeGeneric: "TYPE_GENERIC"; }; export type MeasurementUnitUnitType = (typeof MeasurementUnitUnitType)[keyof typeof MeasurementUnitUnitType];