import { Tile } from '../../types'; /** * Get a square of slippy tiles around the center tile. * * @param centerTile - id, x, y, z * @param gridSize - 1x1, 3x3, 5x5, etc. */ declare function getTilesGrid(centerTile: Tile, gridSize: number): Tile[]; export { getTilesGrid };