/** * An oriented bounding box is a rotated rectangle in world coordinates. * * @see https://github.com/ShukantPal/pixi-essentials/blob/master/packages/bounds/src/OrientedBounds.ts */ import { Type } from '@lastolivegames/becsy'; export declare class OBB { x: number; y: number; width: number; height: number; rotation: number; scaleX: number; scaleY: number; constructor(obb?: Partial); } export declare const obbType: Type;