/** * Checks if the string is an ISIN (stock/security identifier). * If given value is not a string, then it returns false. * * @param value The value being checked. * @returns True if the string is an ISIN, false otherwise. */ export declare function isISIN(value: string): boolean;