import type { FC } from 'react'; import type { Poi } from './libs/Map'; export interface LocationComponentProps { value?: Poi; onChange?: (value?: any) => void; fieldAttr?: string[]; showMap?: boolean; showLngLat?: boolean; locationRange?: 'current' | 'unlimit'; radius?: number; platform?: 'h5' | 'pc'; disabled?: boolean; $$componentItem?: any; getEngineApis?: any; activeKey?: any; } declare const LocationComponent: FC; export default LocationComponent;