/**
 * Validates an ISBN (International Standard Serial Number).
 *
 * @param {string} identifier - The ISBN to validate.
 * @returns {boolean} `true` if the ISBN is valid, `false` otherwise.
 */
declare const _default: (identifier: string | undefined) => boolean;
export default _default;
