import WmsLegendHelper from '../../../tools/wms/wmslegendhelper.js'; import MobileLayerElementComponent from '../layer/component.js'; declare class MobileSelectedLayerElementComponent extends MobileLayerElementComponent { templateUrl: null; styleUrls: null; template: () => import("uhtml").Hole; iconUrl: string | null; legendUrls: Record; /** * At the moment only 1 legend URL is supported on mobile * TODO REG : Manage multiple legend URLs for the same layer */ get firstLegendUrl(): string | undefined; wmsLegendHelper: WmsLegendHelper; constructor(); protected getCrossOrigin(url: string | null): "anonymous" | "use-credentials"; render(): void; protected connectedCallback(): void; } export default MobileSelectedLayerElementComponent;