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