import React from 'react'; import type { LocationDetail } from './types'; export interface MyMapLocationProps { mapId?: string; isSelected?: boolean; onUpdateMyLocation?: (location?: LocationDetail) => void; } export declare const MY_LOCATION = "My location"; export declare const MyMapLocation: React.FC;