export interface PhoneInputProps { country: string; value: string; onChange: (phone: string) => void; onFocus?: (event: React.FocusEvent) => void; onBlur?: (event: React.FocusEvent) => void; width?: string; placeholder?: string; isValid: any; id: string; international?: boolean; dropdownStyle?: React.CSSProperties; enableAreaCodeStretch?: boolean; defaultCountry?: string; disabled?: boolean; isVerified?: boolean; isVerifyDisplay?: boolean; onVerifyClick?: () => void; onValidationChange?: (isValid: boolean) => void; } export type CountryData = { name: string; dialCode: string; countryCode: string; format?: string; };