/// import _isISBN from 'validator/lib/isISBN'; import { TReferenceProps } from '../../..'; import { IStringProps, TStringValidatorResult } from '../_types'; declare type TParameters = Parameters; export interface IIsISBNProps { /** * ISBN Version */ version?: TParameters[1]; } /** * Check if the string is an ISBN (version 10 or 13). */ export declare const isISBN: (props?: TReferenceProps & IStringProps) => TStringValidatorResult; export {};