import { XYZ } from './XYZ.js'; export declare class BoundingBox { min: XYZ; max: XYZ; get width(): number; get height(): number; get center(): XYZ; constructor(min?: XYZ, max?: XYZ); static readonly null: BoundingBox; static readonly infinite: BoundingBox; static fromPoints(points: XYZ[]): BoundingBox; } //# sourceMappingURL=BoundingBox.d.ts.map