UNPKG

407 BTypeScriptView Raw
1import { EventedProps } from '@react-leaflet/core';
2import { LayerGroup as LeafletLayerGroup, LayerOptions } from 'leaflet';
3import { ReactNode } from 'react';
4export interface LayerGroupProps extends LayerOptions, EventedProps {
5 children?: ReactNode;
6}
7export declare const LayerGroup: import("react").ForwardRefExoticComponent<LayerGroupProps & import("react").RefAttributes<LeafletLayerGroup<any>>>;