UNPKG

422 BTypeScriptView Raw
1import { type EventedProps } from '@react-leaflet/core';
2import { LayerGroup as LeafletLayerGroup, type LayerOptions } from 'leaflet';
3import type { 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>>>;