import { FC } from 'react'; import { IPhoneData } from '../../interfaces/phone.types'; interface Props { countryShortName: string; required?: boolean; themeColor?: string; onUpdate: (obj: IPhoneData) => void; placeholder?: string; error?: boolean; validate?: boolean; id?: string; phoneNumberValue?: string | null; countryCodeFromURL?: string | null; additionalClassName?: string; } export declare const Phone: FC; export {};