import { IUnitOfMeasureSystem } from "../engine/unit_of_measure_system"; /** Represents the unit of measure for the volume of a liquid. */ export interface IUnitOfMeasureLiters extends IUnitOfMeasureSystem { /** Gets the singleton instance. */ value: IUnitOfMeasureLiters; } //# sourceMappingURL=unit_of_measure_liters.d.ts.map