import { CountryData } from 'react-phone-input-2'; interface IPhoneInput { error?: boolean; name?: string; dataPosition?: number; dataName?: string; label: string; required?: boolean; placeholder?: string; default_value?: string; onChange?: (e: any) => void; disabled?: boolean; setCountryCodeField?: (country: CountryData) => void; helperText?: string; isInlineEditing?: boolean; country_code?: string; } declare const PhoneInput: import('react').MemoExoticComponent<({ name, error, dataName, dataPosition, label, required, placeholder, default_value, onChange, disabled, setCountryCodeField, helperText, isInlineEditing, country_code, ...rest }: IPhoneInput) => import("react/jsx-runtime").JSX.Element>; export { PhoneInput }; export default PhoneInput;