import type { MercatorTile } from '../types.ts'; /** * Checks whether two Mercator tiles are equal by comparing their x, y, and zoom values. * @param param0 - The first tile as [x, y, zoom] * @param param1 - The second tile as [x, y, zoom] * @returns True if both tiles have identical coordinates and zoom */ export declare const tilesEqual: ([x1, y1, zoom1]: MercatorTile, [x2, y2, zoom2]: MercatorTile) => boolean; //# sourceMappingURL=equal.d.ts.map