export declare abstract class Shape { abstract move(x: any, y: any): any; abstract scale(n: any, anchorX: any, anchorY: any): any; } export declare class Rectangle extends Shape { static from({ x, y, width, height }: { height: any; width: any; x: any; y: any; }): Rectangle; readonly left: number; readonly top: number; readonly right: number; readonly bottom: number; constructor({ top, left, right, bottom, anchorX, anchorY }: { anchorX?: number; anchorY?: number; bottom: any; left: any; right: any; top: any; }); move(tx: any, ty: any): Rectangle; scale(s: any, anchorX?: number, anchorY?: number): any; } //# sourceMappingURL=VirtualGraphics.d.ts.map