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