UNPKG

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