import type { FC } from 'react'; import type { Country } from 'react-phone-number-input'; export interface PhoneInputFieldProps { label?: string; type?: string; id?: string; errorMessage?: string; labelLink?: { text: string; onClick: () => void; }; initialCountry?: Country; initialPhoneNumber?: string; autoComplete?: string; disabled?: boolean; className?: string; autoFocus?: boolean; onChange?: (value: string) => void; } export declare const PhoneInputField: FC;