import type { RawBox3 } from '../box3/RawBox3'; import type { RawPlane3 } from './RawPlane3'; /** * Test if given box intersects with planes or not. * * @param planes A list of planes * @param box A box3 */ export declare function planes3IntersectBox3(planes: RawPlane3[], box: RawBox3): boolean;