import WmsLegendHelper from '../../../tools/wms/wmslegendhelper.js';
import MobileLayerElementComponent from '../layer/component.js';
declare class MobileSelectedLayerElementComponent extends MobileLayerElementComponent {
    protected templateUrl: string | null;
    protected styleUrls: string[] | null;
    template: () => import("uhtml").Hole;
    iconUrl: string | null;
    legendUrls: Record<string, string>;
    /**
     * 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;
