/** * Bounding box intersection and containment utilities. * * Provides functions for checking spatial relationships between * geographic bounding boxes (west, south, east, north format). * * @module */ import type { GeoBbox2D } from "./types.ts"; /** * Check if two bounding boxes intersect or contain each other. * Handles both partial overlaps and complete containment. */ export declare function bboxContainsOrIntersects(bb1: GeoBbox2D, bb2: GeoBbox2D): boolean; //# sourceMappingURL=bbox-intersects.d.ts.map