import type { MercatorTile } from '../../types.ts'; import { MercatorBoundingBox } from '../../types.ts'; /** * Converts a Mercator tile to its geographic bounding box. * @param tile - The tile as [x, y, zoom] * @returns The bounding box covering the tile's geographic extent */ declare const tileToBoundingBox: (tile: MercatorTile) => MercatorBoundingBox; export { tileToBoundingBox }; //# sourceMappingURL=boundingbox.d.ts.map