/// import { ILocation, IPrediction } from './GooglePlaces'; export declare type AddressSelectProps = { components?: any; name: string; disabled?: boolean; error?: string; size?: 'small' | 'medium'; types?: string[]; onFocus?: (event: FocusEvent) => void; onBlur?: (event: FocusEvent) => void; onChange?: (changed: { value: string; label: string; }, predictions: IPrediction[]) => void; location?: ILocation; radius?: number; countries?: string[] | string; placeholder?: string; assistiveText?: string; autoFocus?: boolean; isClearable?: boolean; /** * Class name to be assigned to the component */ className?: string; }; declare const AddressSelect: ({ name, disabled, error, size, types, onFocus, onBlur, onChange, location, radius, countries, ...rest }: AddressSelectProps) => JSX.Element; export default AddressSelect;