1 | import { type PathProps } from '@react-leaflet/core';
|
2 | import type { GeoJsonObject } from 'geojson';
|
3 | import { type GeoJSONOptions, GeoJSON as LeafletGeoJSON } from 'leaflet';
|
4 | import type { LayerGroupProps } from './LayerGroup.js';
|
5 | export interface GeoJSONProps extends GeoJSONOptions, LayerGroupProps, PathProps {
|
6 | data: GeoJsonObject;
|
7 | }
|
8 | export declare const GeoJSON: import("react").ForwardRefExoticComponent<GeoJSONProps & import("react").RefAttributes<LeafletGeoJSON<any, import("geojson").Geometry>>>;
|