declare function decode(hash: string): [number, number]; declare function encode(coords: [number, number]): string; declare function neighbors(hash: string): { bl: string; bc: string; br: string; cl: string; cr: string; tl: string; tc: string; tr: string; }; declare const geohash_decode: typeof decode; declare const geohash_encode: typeof encode; declare const geohash_neighbors: typeof neighbors; declare namespace geohash { export { geohash_decode as decode, geohash_encode as encode, geohash_neighbors as neighbors }; } export { decode as d, encode as e, geohash as g, neighbors as n };