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