import type { MercatorTile } from '../../types.ts'; /** * Converts a Mercator tile to its quadkey string representation. * @param param0 - The tile as [tileX, tileY, tileZoom] * @returns The quadkey string encoding the tile's position and zoom */ declare const tileToQuadkey: ([tileX, tileY, tileZoom]: MercatorTile) => string; export { tileToQuadkey }; //# sourceMappingURL=quadkey.d.ts.map