import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsIBANProps { } /** * Check if a string is a IBAN (International Bank Account Number). */ export declare const isIBAN: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;