import { Point, Bounds } from './common.js'; /** * Calculates the bounds of a rectangle given its center point, width, and height. * @param params Object containing center point (x, y), width, and height of the rectangle * @returns Bounds object containing minX, minY, maxX, maxY */ declare const getBoundFromCenteredRect: (params: { center: Point; width: number; height: number; }) => Bounds; export { getBoundFromCenteredRect };