import type { Country } from 'react-phone-number-input';
import 'react-phone-number-input/style.css';
import React from 'react';
import type { InputProps } from '../../form-engine';
interface PhoneInputSpecificProps {
    onCountryChange?: (country: Country) => void;
    defaultCountry?: Country;
}
type PhoneInputProps = InputProps & PhoneInputSpecificProps;
declare const PhoneInput: React.ForwardRefExoticComponent<Omit<PhoneInputProps, "ref"> & React.RefAttributes<HTMLInputElement>>;
export default PhoneInput;
export type { PhoneInputProps };
