import type { CountryOption } from './phoneCountryUtils'; export interface PhoneValidationResult { isValid: boolean; validationMessage: string; cleanNumber: string; } export declare function validatePhoneNumber(phoneNumber: string, required: boolean, selectedCountry: CountryOption | null): PhoneValidationResult;