import type L from "leaflet"; import { type PropType, type Ref } from "vue"; import type { LayerType } from "../types/enums/LayerType"; export declare const layerProps: { readonly pane: { readonly type: StringConstructor; }; readonly attribution: { readonly type: StringConstructor; }; readonly name: { readonly type: StringConstructor; readonly custom: true; }; readonly layerType: { readonly type: 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 setupLayer: (props: any, leafletRef: Ref, context: any) => { options: L.LayerOptions; methods: { 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; }; }; export declare const render: (ready: any, slots: any) => import("vue").VNode | undefined;