import { ValidationOptions } from '../ValidationOptions'; export declare const IS_ALPHANUMERIC = "isAlphanumeric"; /** * Checks if the string contains only letters and numbers. * If given value is not a string, then it returns false. */ export declare function isAlphanumeric(value: unknown, locale?: validator.AlphanumericLocale): boolean; /** * Checks if the string contains only letters and numbers. * If given value is not a string, then it returns false. */ export declare function IsAlphanumeric(locale?: validator.AlphanumericLocale, validationOptions?: ValidationOptions): PropertyDecorator;