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