import React from 'react'; import { Nullable } from '@gisatcz/ptr-be-core/browser'; /** * State of the modal window with feature detail */ export interface FeatureModalState { isVisible: boolean; featureRecord: Nullable; } /** * Props of the modal window with feature detail */ interface FeatureModalProps { isVisible: boolean; detailEntity: Nullable; onCloseHandler: () => void; } /** * Modal window with map feature detail information * @param props * @returns */ declare const FeatureDetailModal: React.FC; export default FeatureDetailModal;