/** Unit of weight used to measure a quantity. */ export declare const MeasurementUnitWeight: { readonly ImperialWeightOunce: "IMPERIAL_WEIGHT_OUNCE"; readonly ImperialPound: "IMPERIAL_POUND"; readonly ImperialStone: "IMPERIAL_STONE"; readonly MetricMilligram: "METRIC_MILLIGRAM"; readonly MetricGram: "METRIC_GRAM"; readonly MetricKilogram: "METRIC_KILOGRAM"; }; export type MeasurementUnitWeight = (typeof MeasurementUnitWeight)[keyof typeof MeasurementUnitWeight];