/** * Checks whether a given string is a valid International Bank Account Number (IBAN). * @param {string} iban The IBAN to validate. * @returns `true` if the IBAN is valid, `false` otherwise. */ export declare function isValidIBAN(iban: string): boolean; /** * Checks if the provided BBAN (Basic Bank Account Number) is valid for a given country. * * @param {string} countryCode - The two-letter ISO country code. * @param {string} bban - The BBAN to validate. * @returns True if the BBAN is valid for the specified country, false otherwise. */ export declare function isValidBBAN(countryCode: string, bban: string): boolean; //# sourceMappingURL=validateBAN.d.ts.map