export declare type PlaceableBBox = { x?: number; y?: number; width: number; height: number; }; export declare class Placeable { bbox: BBoxType; private _place; place(point: { x: number; }): this is Placeable; place(point: { y: number; }): this is Placeable; constructor(width: number, height: number, place: Placeable['place']); get x(): BBoxType['x']; get y(): BBoxType['y']; get width(): number; get height(): number; } //# sourceMappingURL=Placeable.d.ts.map