import { t as Serializable } from "./Serializable-BNGC32bH.js"; import { t as MeasureUnit } from "./MeasureUnit-BzUBow3B.js"; //#region src/main/commons/NumberWithUnit.d.ts interface NumberWithUnitJSON { value: number; unit: string; } declare class NumberWithUnit implements Serializable { private readonly _value; private readonly _unit; constructor(value: number, unit: MeasureUnit); get value(): number; get unit(): MeasureUnit; private static fromJSON; toJSONObject(): NumberWithUnitJSON; } //#endregion export { NumberWithUnitJSON as n, NumberWithUnit as t };