import { CellPrecision } from "../services/unl.service"; type Feature = { type: "Feature"; geometry: { type: "Point"; coordinates: [number, number]; }; properties: Record; }; type FeatureCollection = { type: "FeatureCollection"; features: Feature[]; }; type ClickedCell = { locationId: string; coordinates: [number, number]; }; interface Props { value?: any; latitude?: string | number; longitude?: string | number; mapId?: string; zoom?: number; center?: `${number},${number}`; getFeatureCollectionOnClick?: (featureCollection: FeatureCollection | null, cell: ClickedCell, precision: CellPrecision) => void; focusOnUser?: boolean; displayMode?: boolean; gridPrecision?: CellPrecision; minZoom?: number; maxZoom?: number; } export default function UnlMap({ value, latitude, longitude, mapId, center, getFeatureCollectionOnClick, focusOnUser, displayMode, gridPrecision, minZoom, maxZoom, }: Props): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=UNLMap.d.ts.map