import { Vector3 } from './Vector3'; declare class Box3 { min: Vector3; max: Vector3; constructor(min?: Vector3, max?: Vector3); } export { Box3 };