/** The unit of volume used to measure a quantity. */ export declare const MeasurementUnitVolume: { readonly GenericFluidOunce: "GENERIC_FLUID_OUNCE"; readonly GenericShot: "GENERIC_SHOT"; readonly GenericCup: "GENERIC_CUP"; readonly GenericPint: "GENERIC_PINT"; readonly GenericQuart: "GENERIC_QUART"; readonly GenericGallon: "GENERIC_GALLON"; readonly ImperialCubicInch: "IMPERIAL_CUBIC_INCH"; readonly ImperialCubicFoot: "IMPERIAL_CUBIC_FOOT"; readonly ImperialCubicYard: "IMPERIAL_CUBIC_YARD"; readonly MetricMilliliter: "METRIC_MILLILITER"; readonly MetricLiter: "METRIC_LITER"; }; export type MeasurementUnitVolume = (typeof MeasurementUnitVolume)[keyof typeof MeasurementUnitVolume];