import { LayerGeneralProps } from './map.layers.models'; import { _WMSLayer as WMSLayer } from '@deck.gl/geo-layers'; /** * @deprecated Used by RenderingMap which is deprecated and will be removed in future versions. Use MapSet and related components instead. * Creates a WMS (Web Map Service) layer using the provided source node and activation status. * * @param {LayerGeneralProps} param0 - The properties for creating the WMS layer. * @param {Object} param0.sourceNode - The source node containing configuration and key. * @param {boolean} param0.isActive - The activation status of the layer. * @param {string} param0.key - layer identifier * @param {number} param0.opacity - Layer opacity * @returns {WMSLayer} The created WMS layer. * @throws {Error} If the configuration does not contain sublayers. */ export declare const createWMSLayer: ({ sourceNode, isActive, key, opacity }: LayerGeneralProps) => WMSLayer<{ id: string; visible: boolean; data: string; minZoom: number; maxZoom: number; opacity: number; layers: any; serviceType: "wms"; }>;