import React from 'react'; import { LayerSourceProps } from './LayerManager'; /** * A React component that creates and manages a WMS (Web Map Service) layer. * This component uses the `@deck.gl/geo-layers` library to render the WMS layer. * * @param {LayerSourceProps} props - The props for the WMSLayerSource component. * @param {RenderingLayer} props.layer - The layer configuration object. * @param {(id: string, instance: Layer | null) => void} props.onLayerUpdate - Callback to handle updates to the layer instance. * @returns {null} This component does not render any DOM elements. */ export declare const WMSLayerSource: React.MemoExoticComponent<({ layer, onLayerUpdate }: LayerSourceProps) => null>;