import { type CountryCode } from 'libphonenumber-js'; import type { FC } from 'react'; interface PhoneInputProps { hasError?: boolean; className?: string; initialCountry?: CountryCode; initialPhoneNumber?: string; autoComplete?: string; disabled?: boolean; autoFocus?: boolean; onChange: (value: string | undefined) => void; } export declare const PhoneInput: FC; export {};