import { Bounds } from './common.js'; /** * Calculates the overlapping bounds of two rectangles * @param bounds1 First bounding rectangle * @param bounds2 Second bounding rectangle * @returns The overlapping bounds or null if there is no overlap */ declare const boundsIntersection: (bounds1: Bounds, bounds2: Bounds) => Bounds | null; export { boundsIntersection };