import type { MercatorTile } from '../../types.ts'; /** * Returns the four sibling tiles (children of the parent tile) for the given tile. * @param tile - The tile as [x, y, zoom] * @returns An array of four sibling tiles at the same zoom level */ declare const tileToSiblings: (tile: MercatorTile) => MercatorTile[]; export { tileToSiblings }; //# sourceMappingURL=siblings.d.ts.map