import { Point, Bounds } from './common.js'; /** * Calculates the bounding rectangle from an array of points * @param points Array of points to calculate bounds from * @returns Bounds object containing minX, minY, maxX, maxY, or null if array is empty */ declare const getBoundsFromPoints: (points: Point[]) => Bounds | null; export { getBoundsFromPoints };