import { ValidationOptions } from '../ValidationOptions'; import ValidatorJS from 'validator'; export declare const IS_ALPHA = "isAlpha"; /** * Checks if the string contains only letters (a-zA-Z). * If given value is not a string, then it returns false. */ export declare function isAlpha(value: unknown, locale?: ValidatorJS.AlphaLocale): boolean; /** * Checks if the string contains only letters (a-zA-Z). * If given value is not a string, then it returns false. */ export declare function IsAlpha(locale?: string, validationOptions?: ValidationOptions): PropertyDecorator;