import type { BBox } from './bbox'; /** * Gets the BBox of a given geohash * * @param {string} geohash Geohash to find BBox of * @return {BBox} The BBox of the geohash */ export declare function getGeohashBBox(geohash: string): BBox; /** * Gets all the geohashes inside a BBox * * @param {BBox} bbox The BBox * @param {number} precision Precision for the geohashes * @param {boolean} [strict=false] Only return geohashes whose centroids are inside BBox * @return {string} Array of geohash strings */ export declare function getGeohashesInBBox(bbox: BBox, precision: number, strict?: boolean): string[];