import { Point, IPhysicalObject, PhysicalObject } from '.'; export declare class Rectangle extends PhysicalObject implements IPhysicalObject { constructor(x: number, y: number, width: number, height: number); pointInside(point: Point): boolean; intersect(shape: IPhysicalObject): boolean; intersectRect(rect: Rectangle): boolean; }