import * as React from 'react'; import { Coords, GeocodeApiResponse } from './types'; type LocationSearchInputProps = { disabled: boolean; value?: Coords; onSearchAddress: (term: string) => Promise; onGetAddressFromLocation: (coors: Coords | undefined, value: string) => Promise; onChangeLocation: (location?: Coords) => void; }; export declare function LocationSearchInput(props: LocationSearchInputProps): React.JSX.Element; export {};