import type { Point } from '../types/index.ts'; /** * Returns all min and max values of an array of points. * @param points - Array of points {x,y}. * @returns - Object with the 4 extrema. */ export declare function xyObjectMinMaxValues(points: Point[]): { minX: number; maxX: number; minY: number; maxY: number; }; //# sourceMappingURL=xyObjectMinMaxValues.d.ts.map