import { Bounds } from './common.js'; /** * Computes the minimum distance between two bounding rectangles * @param bounds1 First bounding rectangle * @param bounds2 Second bounding rectangle * @returns The minimum distance. Returns 0 if the bounds overlap or touch */ declare const boundsDistance: (bounds1: Bounds, bounds2: Bounds) => number; export { boundsDistance };