import React from 'react'; import { GeoJSON, GeoJSONOptions, PathOptions, StyleFunction } from 'leaflet'; import { GeoJsonObject } from 'geojson'; import { Methods } from './useEvents/events'; export type GeoJsonGroupProps

= { children?: React.ReactNode; geojson?: GeoJsonObject; fit?: boolean; style?: PathOptions | StyleFunction

; onMounted?: (geojson: GeoJSON) => void; } & GeoJSONOptions & Methods;