/** Whether the value likely contains a country calling code or international formatting. */ export declare const shouldNormalizePhoneInput: (value: string, countryIso2: string) => boolean; /** * Converts international/autocomplete values to national digits for the IMask field. * IMask reapplies spacing from the country mask. */ export declare const normalizeNationalPhoneInput: (value: string, countryIso2: string) => string;