import { t as Serializable } from "./Serializable-BNGC32bH.js"; //#region src/main/commons/Size.d.ts interface SizeJSON { width: number; height: number; } declare class Size implements Serializable { private readonly _width; private readonly _height; constructor(width: number, height: number); get width(): number; get height(): number; private static fromJSON; toJSONObject(): SizeJSON; } //#endregion export { SizeJSON as n, Size as t };