import type { MercatorBoundingBox, MercatorTile } from '../../types.ts'; /** * Returns all Mercator tiles that intersect the given bounding box at the specified zoom level. * @param box - The geographic bounding box * @param zoom - The zoom level * @returns An array of tiles covering the bounding box */ declare const tilesFromBoundingBox: (box: MercatorBoundingBox, zoom: number) => MercatorTile[]; export { tilesFromBoundingBox }; //# sourceMappingURL=boundingbox.d.ts.map