import { MapState } from '../../reducers'; /** * top left of the grid to a square polygon for the hover layer * and current latitude * @param object * @param cellSize * @param coverage * @param properties * @param mapState * @returns - geojson feature */ export declare function pointToPolygonGeo({ object, cellSize, coverage, properties, mapState }: { object: any; cellSize: number; coverage: number; properties?: any; mapState: MapState; }): { geometry: { coordinates: number[][]; type: string; }; properties: any; };