1 | import { type PathProps } from '@react-leaflet/core';
|
2 | import { FeatureGroup as LeafletFeatureGroup } from 'leaflet';
|
3 | import type { LayerGroupProps } from './LayerGroup.js';
|
4 | export interface FeatureGroupProps extends LayerGroupProps, PathProps {
|
5 | }
|
6 | export declare const FeatureGroup: import("react").ForwardRefExoticComponent<FeatureGroupProps & import("react").RefAttributes<LeafletFeatureGroup<any>>>;
|