import { AccessorFunction, DefaultProps } from '@deck.gl/core'; import GeoCellLayer, { GeoCellLayerProps } from "../geo-cell-layer/GeoCellLayer.js"; /** All properties supported by GeohashLayer. */ export type GeohashLayerProps = _GeohashLayerProps & GeoCellLayerProps; /** Properties added by GeohashLayer. */ type _GeohashLayerProps = { /** * Called for each data object to retrieve the geohash string identifier. * * By default, it reads `geohash` property of data object. */ getGeohash?: AccessorFunction; }; /** Render filled and/or stroked polygons based on the [Geohash](https://en.wikipedia.org/wiki/Geohash) geospatial indexing system. */ export default class GeohashLayer extends GeoCellLayer> & ExtraProps> { static layerName: string; static defaultProps: DefaultProps>; indexToBounds(): Partial | null; } export {}; //# sourceMappingURL=geohash-layer.d.ts.map