import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; export interface IIsBICProps { } /** * Check if a string is a BIC (Bank Identification Code) or SWIFT code. */ export declare const isBIC: (props?: TReferenceProps & IStringProps) => TStringValidatorResult;