import React from "react"; export interface PhoneTextFieldProps extends React.InputHTMLAttributes { label?: string; required?: boolean; hint?: string; helperText?: string; error?: boolean; prefix?: string; link?: string; countryPlaceholder?: string; onCountryChange?: (dialCode: string) => void; placeholder?: string; onLinkClick?: React.MouseEventHandler; initialValue?: string; } export interface CountriesDropdownProps { toggle: boolean; value: string; }