import type { FC } from 'react'; import type { Poi } from './libs/Map'; interface LocationMobileProps { poi?: Poi; onChange?: (poi?: Poi) => void; locationRange?: 'current' | 'unlimit'; radius?: number; onClose?: () => void; onOk?: () => void; isAMap: boolean; } declare const LocationMobile: FC; export default LocationMobile;