import { FocusEvent } from 'react'; import { Country } from 'react-phone-number-input'; import 'react-phone-number-input/style.css'; import { CustomEvent } from '../../interfaces/custom.event'; export interface InputPhoneProps { defaultCountry?: Country; errors?: { [key: string]: string[]; }; fullWidth?: boolean; label?: string; name: string; onBlur?: (e: FocusEvent) => void; onChange: (e: CustomEvent) => void; placeholder?: string; required?: boolean; value?: string; } declare const InputPhone: ({ defaultCountry, errors, fullWidth, name, onBlur, onChange, placeholder, required, value, }: InputPhoneProps) => JSX.Element; export default InputPhone;