/// import { GeocodeQueryType } from '@mapbox/mapbox-sdk/services/geocoding'; interface GeocoderProps { token: string | undefined; types?: GeocodeQueryType[]; setFeature: (feature: any) => void; fullWidth: boolean; label: string; className?: any; required?: boolean; } export default function Geocoder({ token: accessToken, types, setFeature, fullWidth, label, className, required, }: GeocoderProps): JSX.Element; export {};