import { IPhoneValidation } from '../types'; /** * Get phone number validation rules for a country * Combines libphonenumber-js data with custom formatting rules */ export declare function getPhoneValidation(countryIso2: string): IPhoneValidation; /** * Format phone example as a user-friendly placeholder */ export declare function formatPhoneExample(example: string, countryIso2: string): string; /** * Validate phone number against country-specific rules */ export declare function validatePhoneNumber(dialCode: string, number: string, countryIso2: string): { isValid: boolean; errors: string[]; }; /** * Format phone number for display based on country conventions */ export declare function formatPhoneNumber(number: string, countryIso2: string): string;