import { PropertyValidator } from "../PropertyValidator";
import { MobilePhoneLocale } from "../../shared/";
export declare class IsMobilePhoneValidator implements PropertyValidator<string> {
    private locale;
    constructor(locale: MobilePhoneLocale);
    isValid(input: string | undefined): boolean;
}
