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<HTMLElement>;
  onBlur?: React.FocusEventHandler<HTMLElement>;
}
declare const PhoneInput: React.FC<PhoneInputProps>;
export default PhoneInput;
