import { t as Serializable } from "./Serializable-BNGC32bH.js"; import { t as NumberWithUnit } from "./NumberWithUnit-DowGnoG0.js"; //#region src/main/commons/PointWithUnit.d.ts interface PointWithUnitJSON { x: { value: number; unit: string; }; y: { value: number; unit: string; }; } declare class PointWithUnit implements Serializable { private readonly _x; private readonly _y; constructor(x: NumberWithUnit, y: NumberWithUnit); private static get zero(); get x(): NumberWithUnit; get y(): NumberWithUnit; private static fromJSON; toJSONObject(): PointWithUnitJSON; } //#endregion export { PointWithUnitJSON as n, PointWithUnit as t };