import * as React from 'react'; interface GeocoderProps { onSelect?: (addressData: any) => void; showDatabaseBuildings?: boolean; alwaysExpanded?: boolean; geocodeEarthApiKey?: string; geocoderUrl?: string; } export default function Geocoder({ onSelect, showDatabaseBuildings, alwaysExpanded, geocodeEarthApiKey, geocoderUrl, }: GeocoderProps): React.JSX.Element; export {}; //# sourceMappingURL=Geocoder.d.ts.map