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?: React.ReactNode; error?: string | null; onBlur?: (e: React.FocusEvent) => void; helperText?: React.ReactNode; required?: boolean; defaultCountry?: CountryCode; placeholder?: string; color?: string; disabled?: boolean; }; declare function PhoneNumberInput({ onChange, values, names, error, onBlur, helperText, label, required, defaultCountry, placeholder, color, disabled, }: PhoneNumberInputProps): React.JSX.Element; export default PhoneNumberInput;