import React from "react"; import { CountryCode } from "libphonenumber-js"; type PhoneNumberInputProps = { values: { number: string; countryCallingCode: string; country: string; }; names?: { number: string; countryCallingCode: string; country: string; }; onChange: (value: string, name: string) => void; label?: string; error?: string | null; onBlur?: (e: React.FocusEvent) => void; helperText?: React.ReactNode; required?: boolean; defaultCountry?: CountryCode; placeholder?: string; color?: string; isDisableCountries?: boolean; showCallingCode?: boolean; }; declare function PhoneNumberInputV1({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, isDisableCountries, showCallingCode, }: PhoneNumberInputProps): React.JSX.Element; export default PhoneNumberInputV1;