UNPKG

@duffel/components

Version:

Component library to build your travel product with Duffel.

13 lines (12 loc) 436 B
import React from "react"; import { Place } from "./lib/getPlacesFromMapboxClient"; export interface MapboxPlacesLookupProps { mapboxPublicKey: string; onPlaceSelected: (selection: Place) => void; placeholder?: string; inputClassName?: string; popupClassName?: string; highlightedPopupItemClassName?: string; inputValue?: string; } export declare const MapboxPlacesLookup: React.FC<MapboxPlacesLookupProps>;