import type { layerTypes } from '@opengeoweb/store'; import type { MapLocation } from '@opengeoweb/webmap-react'; export interface GFIResult { data: string; isLoading: boolean; } export interface GFILayer { layerId: string; url: string; title: string; } export declare const getFeatureInfoUrl: (layer: layerTypes.Layer, mapPinLocation: MapLocation | null) => string | undefined; /** * Make a list of GFI Layers to display. * @param layers * @param mapId * @returns */ export declare const getLayersToUpdate: (mapPinLocation: MapLocation | null, layers: layerTypes.Layer[]) => GFILayer[];