import type { MercatorLngLat, MercatorTile } from '../../types.ts'; /** * Returns the center point of a Mercator tile. * @param tile - The tile as [x, y, zoom] * @returns The center coordinate as a MercatorLngLat */ declare const tileToPoint: (tile: MercatorTile) => MercatorLngLat; export { tileToPoint }; //# sourceMappingURL=point.d.ts.map