import type { MapLocation } from '../../../types/types'; export interface OpenLayersGetFeatureInfoProps { displayMapPin?: boolean; disableMapPin?: boolean; mapPinLocation?: MapLocation; selectLocation: (location: MapLocation) => void; } export declare const OpenLayersGetFeatureInfo: React.FC;