import { FC } from 'react'; import { latLngType } from '../types'; import { SearchPopupIconsType } from './SearchPopup'; export declare type LocationSearchInputClassesType = { mapSearchBarClassName?: string; mapCenterButtonClassName?: string; }; declare type PropsType = { handleInput: (location: latLngType, address: string) => void; handleErrorSelect?: (e: string) => void; onErrorMsg?: (msg: string) => void; recenterMap?: () => void; closeSearchPopup?: () => void; classes?: LocationSearchInputClassesType; icons?: Omit; }; declare const LocationSearchInput: FC; export default LocationSearchInput;