import type { MercatorTile } from '../types.ts'; /** * Checks whether all four siblings of the given tile exist in the tile array. * @param tiles - The array of tiles to search * @param tile - The tile whose siblings to check for * @returns True if all siblings are present in the array */ export declare const hasSiblings: (tiles: MercatorTile[], tile: MercatorTile) => boolean; //# sourceMappingURL=hasSiblings.d.ts.map