import { ValidationOptions } from '../ValidationOptions'; export declare const IS_BASE64 = "isBase64"; /** * Checks if a string is base64 encoded. * If given value is not a string, then it returns false. */ export declare function isBase64Validate(value: unknown, options?: any): boolean; /** * Checks if a string is base64 encoded. * If given value is not a string, then it returns false. */ export declare function IsBase64(options?: any, validationOptions?: ValidationOptions): PropertyDecorator;