import { LngLat } from "maplibre-gl"; export declare enum CellPrecision { GEOHASH_LENGTH_1 = 1, GEOHASH_LENGTH_2 = 2, GEOHASH_LENGTH_3 = 3, GEOHASH_LENGTH_4 = 4, GEOHASH_LENGTH_5 = 5, GEOHASH_LENGTH_6 = 6, GEOHASH_LENGTH_7 = 7, GEOHASH_LENGTH_8 = 8, GEOHASH_LENGTH_9 = 9, GEOHASH_LENGTH_10 = 10 } export interface Cell { locationId: string; size: string; } export declare const getFormattedCellDimensions: (cellPrecision: CellPrecision) => string; export declare const getCell: (coordinates: LngLat, cellPrecision: CellPrecision) => Cell; export declare const getCellPrecisionZoom: (cellPrecision: CellPrecision) => number; export declare const geocodeReverseWithGeoId: (geoId: string) => Promise; export declare const geocodeReverseWithPoint: (point: LngLat) => Promise; export declare const createGeocodeReverse: () => (geoId: string) => Promise; //# sourceMappingURL=unl.service.d.ts.map