import { FC } from 'react'; import { PointLocationType } from '../types'; import { SearchPopupIconsType } from './SearchPopup'; export declare type LocationSearchInputClassesType = { mapSearchBarContainerClassName?: string; mapSearchBarClassName?: string; mapSearchBarInputClassName?: string; mapCenterButtonContainerClassName?: string; mapCenterButtonClassName?: string; }; export declare type LocationSearchInputPropsType = { handleInput: ({ latLn, districtCode, postalCode, fullAddress, label, }: PointLocationType) => void; handleErrorSelect?: (e: string) => void; onErrorMsg?: (msg: string) => void; recenterMap?: () => void; closeSearchPopup?: () => void; classes?: LocationSearchInputClassesType; icons?: Omit; }; declare const LocationSearchInput: FC; export default LocationSearchInput;