import React from 'react'; import { Country } from '../types'; interface PhoneInputProps { name: string; required?: boolean; value?: string | number; label?: string; placeholder?: string; hasError?: boolean; extraClassName?: string; countries: Country[]; countryIso2?: string; onChange?: React.ChangeEventHandler; onBlur?: React.FocusEventHandler; } declare const PhoneInput: React.FC; export default PhoneInput;