import { AbstractControl, ValidationErrors } from '@angular/forms'; import { IsMobilePhoneOptions, MobilePhoneLocale } from '@rxap/validator'; export declare function IsPhoneNumber({ message, locale, options, }?: { message?: string; locale?: 'any' | MobilePhoneLocale | MobilePhoneLocale[]; options?: IsMobilePhoneOptions; }): (control: AbstractControl) => ValidationErrors | null;