import { ValidationOptions } from '../ValidationOptions'; export declare const IS_IBAN = "isIBAN"; /** * Check if a string is a IBAN (International Bank Account Number). * If given value is not a string, then it returns false. */ export declare function isIBAN(value: unknown): boolean; /** * Check if a string is a IBAN (International Bank Account Number). * If given value is not a string, then it returns false. */ export declare function IsIBAN(validationOptions?: ValidationOptions): PropertyDecorator;