import { MessageFunctionType, Result } from '../types'; export interface IsBicErrors { TARGET_ARGUMENT_NOT_A_STRING: MessageFunctionType; } export declare const IS_BIC_ERRORS: IsBicErrors; /** * Tests whether the `target` is BIC encoded * * ### Example * ``` * expect(isBIC(SBICKEN1).value).toBeTruthy() * ``` * @param target The target string */ export declare function isBIC(target: string): Result;