import { PIXI } from "../externals" /** * The rectangle class. * * @class * @extends PIXI.Rectangle * @param {number} x - The x coordinate for the upper-left corner. * @param {number} y - The y coordinate for the upper-left corner. * @param {number} width - The width of the rectangle. * @param {number} height - The height of the rectangle. */ export declare class Rectangle extends PIXI.Rectangle { constructor(x?: number, y?: number, width?: number, height?: number) }