import { LineSegments } from "../objects/LineSegments.ts"; interface BoxLikeObject { geometry?: { boundingBox?: { min: { x: number; y: number; z: number; }; max: { x: number; y: number; z: number; }; }; }; } /** Draws a wireframe box around an object's bounding box. */ export declare class BoxHelper extends LineSegments { #private; type: string; constructor(object: BoxLikeObject, color?: number); /** Recomputes the wireframe from the object's bounding box. */ update(): void; setFromObject(object: BoxLikeObject): this; dispose(): void; } export {}; //# sourceMappingURL=BoxHelper.d.ts.map