export interface DSAMaskConfig { pattern: string; placeholder: string; mask?: string; 'help-text': string; } /** * Input Mask configuration for IBAN from countries within the SEPA area. * @type DSAMaskConfig * @variables * - pattern * - placeholder * - help-text * @source https://regex101.com/r/HajaYs/1 * @specification https://www.iban.com/structure * * Make sure to set the validate property to `true` */ export declare const IBANConfig: DSAMaskConfig; /** * Input Mask configuration for BIC/Swift. Pattern compatible the 100 principal banks of France. * @type DSAMaskConfig * @variables * - pattern * - placeholder * - help-text * @source https://regex101.com/r/blHPgu/1 * * Make sure to set the validate property to `true` */ export declare const BICConfig: DSAMaskConfig; /** * Input Mask configuration for NIR * @type DSAMaskConfig * @variables * - pattern * - placeholder * - helpText * @source https://regex101.com/r/sF0cT6/1 * * Make sure to set the validate property to `true */ export declare const NIRConfig: DSAMaskConfig;