import { t as Serializable } from "./Serializable-BNGC32bH.js"; import { t as NumberWithUnit } from "./NumberWithUnit-DowGnoG0.js"; //#region src/main/commons/SizeWithUnit.d.ts interface SizeWithUnitJSON { width: { value: number; unit: string; }; height: { value: number; unit: string; }; } declare class SizeWithUnit implements Serializable { private readonly _width; private readonly _height; constructor(width: NumberWithUnit, height: NumberWithUnit); get width(): NumberWithUnit; get height(): NumberWithUnit; private static fromJSON; isSameAs(other: SizeWithUnit): boolean; toJSONObject(): SizeWithUnitJSON; } //#endregion export { SizeWithUnitJSON as n, SizeWithUnit as t };