import { MessageFunctionType, Result } from '../types'; export interface IsISINErrors { TARGET_ARGUMENT_NOT_A_STRING: MessageFunctionType; } export declare const IS_ISIN_ERRORS: IsISINErrors; /** * Test whether the target string is an ISBN number. * * ### Example * ``` * expect(isISIN('AU0000XVGZA3').value).toBeTruthy() * ``` * @param target The string */ export declare function isISIN(target: string): Result;