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