export class Image { /** * @param {number} width - The width of the image. * @param {number} height - The height of the image. */ constructor(width: number, height: number); /** @type {number} */ width: number; /** @type {number} */ height: number; }