import type { MercatorBoundingBox } from '../../types.ts'; /** * Computes the center point of a bounding box as [lng, lat], rounded to the specified decimal places. * @param boundingBox - The bounding box to find the center of * @param decimal - Number of decimal places for rounding (default 6) * @returns A [longitude, latitude] tuple representing the center */ export declare const boundingBoxToCenter: (boundingBox: MercatorBoundingBox, decimal?: number) => number[]; //# sourceMappingURL=center.d.ts.map