import React from 'react'; import type { layerTypes, uiTypes } from '@opengeoweb/store'; import type { MapLocation } from '@opengeoweb/webmap-react'; interface GetFeatureInfoDialogProps { layers: layerTypes.Layer[]; isOpen: boolean; onClose: () => void; onMouseDown?: () => void; mapId: string; showMapId?: boolean; order?: number; source?: uiTypes.Source; mapPinLocation?: MapLocation; } declare const GetFeatureInfoDialog: React.FC; export default GetFeatureInfoDialog;