/** * Sanitizes ISBN (International Standard Book Number) strings from the input. * * @param {string | string[]} input - The input string or array of strings to sanitize. * @returns {string[]} An array of unique, sanitized ISBNs. */ declare const _default: (input: string | string[]) => string[]; export default _default;