import type { FC } from 'react';
import type { Poi } from './libs/Map';
interface LocationResultProps {
    poi: Poi;
    onDelete?: () => void;
    readOnly?: boolean;
    showMap?: boolean;
    showLngLat?: boolean;
    isAMap: boolean;
    renderType: string;
    customEngineApi: any;
    activeKey?: any;
}
declare const LocationResult: FC<LocationResultProps>;
export default LocationResult;
