import type L from "leaflet"; export declare const layerGroupProps: { readonly pane: { readonly type: StringConstructor; }; readonly attribution: { readonly type: StringConstructor; }; readonly name: { readonly type: StringConstructor; readonly custom: true; }; readonly layerType: { readonly type: import("vue").PropType; readonly custom: true; }; readonly visible: { readonly type: BooleanConstructor; readonly custom: true; readonly default: true; }; readonly options: { readonly type: ObjectConstructor; readonly default: () => {}; readonly custom: true; }; }; export declare const setupLayerGroup: (props: any, leafletRef: any, context: any) => { options: L.InteractiveLayerOptions; methods: { addLayer(layer: any): void; removeLayer(layer: any): void; setAttribution(val: any): void; setName(): void; setLayerType(): void; setVisible(isVisible: any): void; bindPopup(leafletObject: any): void; bindTooltip(leafletObject: any): void; unbindTooltip(): void; unbindPopup(): void; updateVisibleProp(value: any): void; }; };