UNPKG

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