import { FormGroup, ValidatorFn } from '@angular/forms';
import { PhoneNumberFormat } from 'google-libphonenumber';
import { Country } from '../types/country.model';
export default class TelValidators {
    static isValidNumber(telForm: FormGroup, includeDialCode: boolean | undefined, allCountries: Country[], outputNumberFormat?: PhoneNumberFormat): ValidatorFn;
}
