import React, { DetailedHTMLProps, InputHTMLAttributes } from 'react'; import type * as PhoneInputUtilsType from 'react-phone-number-input'; export type PhoneProps = Omit, HTMLInputElement>, 'onChange'> & { isError?: boolean; placeholder?: string; countries?: PhoneInputUtilsType.Country[]; defaultCountry?: PhoneInputUtilsType.Country; countryCallingCodeEditable?: boolean; defaultValue?: string; name?: string; value?: string; onChange?: (v: string) => void; trackingFn?: (option: any) => void; }; export declare const PhoneWithCustomCountrySelect: React.ForwardRefExoticComponent & React.RefAttributes>>;