import React from 'react'; import { type Country } from './countries'; export interface PhoneInputProps extends Omit, 'value' | 'onChange'> { value?: string; onChange?: (value: string) => void; country?: string; defaultCountry?: string; autoDetect?: boolean; onCountryChange?: (country: Country) => void; label?: string; error?: string; hint?: string; searchable?: boolean; showFlags?: boolean; animate?: boolean; className?: string; } export declare const PhoneInput: React.FC;