import { BBox } from "../types/index.js"; /** Returns whether bounding box A overlaps with or touches bounding box B */ export declare function bboxOverlap(a: BBox, b: BBox): boolean;