import type { FC } from 'react'; import type { ModalProps } from 'antd'; import type { Poi } from './libs/Map'; interface LocationModalProps extends Omit { initialPoi?: Poi; onOk?: (poi?: Poi) => void; locationRange?: 'current' | 'unlimit'; radius?: number; platform?: 'h5' | 'pc'; isAMap: boolean; renderType: any; customEngineApi: any; } declare const LocationModal: FC; export default LocationModal;