import type { Polygon } from 'geojson'; import type { MercatorTile } from '../../types.ts'; /** * Converts a Mercator tile to a GeoJSON Polygon geometry. * @param tile - The tile as [x, y, zoom] * @returns A GeoJSON Polygon representing the tile's geographic extent */ declare const tileToGeoJson: (tile: MercatorTile) => Polygon; export { tileToGeoJson }; //# sourceMappingURL=geoJson.d.ts.map