export default function SelectModal({ currentLocations, location, setLocation, isSelectMapVisible, setIsSelectMapVisible, chooseLocation, APIKEY, locationRange, customRange, readOnly, }: { currentLocations?: { latlng: { lat: any; lng: any; }; }; location?: { latlng: { lat: any; lng: any; }; }; setLocation: any; isSelectMapVisible?: boolean; setIsSelectMapVisible: any; chooseLocation: any; APIKEY?: string; locationRange: any; customRange: any; readOnly: any; }): JSX.Element;