import { Validator, AbstractControl } from "@angular/forms";
/**
* IBAN number validation directive.
* Note that the same validation can be used for Salaxy account ID's.
* Angular Validator wrapper on top of @salaxy/core.Validation.isIban()
*
* /#/examples/ValidationMessagesExample
*
* @example
*
*
*/
export declare class IbanValidator implements Validator {
sxyIban: string;
constructor(sxyIban: string);
/** Validates input */
validate(c: AbstractControl): {
[key: string]: any;
};
}