import { Validator, AbstractControl } from "@angular/forms"; /** * Mobile phone number validation directive. * Angular Validator wrapper on top of @salaxy/core.Validation.isMobilePhone() * * /#/examples/ValidationMessagesExample * * @example * * */ export declare class MobilePhoneValidator implements Validator { sxyMobilePhone: string; constructor(sxyMobilePhone: string); /** Validates input */ validate(c: AbstractControl): { [key: string]: any; }; }