import { Bounds, Point } from './common.js'; /** * Calculates the center point of a bounds rectangle. * @param bounds Bounds object containing minX, minY, maxX, maxY * @returns Center point of the bounds */ declare const getBoundsCenter: (bounds: Bounds) => Point; export { getBoundsCenter };