import React from 'react';
import { InputPhoneProps } from './InputPhone.types';
export { isValidPhoneNumber as matchIsValidPhone, AsYouType, } from 'libphonenumber-js';
declare const InputPhone: React.ForwardRefExoticComponent<Omit<InputPhoneProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export default InputPhone;
