import { Bounds } from './common.js'; /** * Determines if two bounding rectangles overlap * @param bounds1 First bounding rectangle * @param bounds2 Second bounding rectangle * @returns true if the bounds overlap, false otherwise */ declare const doBoundsOverlap: (bounds1: Bounds, bounds2: Bounds) => boolean; export { doBoundsOverlap };