import { Bounds } from './common.js'; /** * Computes the overlapping area between two bounding rectangles * @param bounds1 First bounding rectangle * @param bounds2 Second bounding rectangle * @returns The area of overlap. Returns 0 if the bounds do not overlap */ declare const boundsAreaOverlap: (bounds1: Bounds, bounds2: Bounds) => number; export { boundsAreaOverlap };