/** * Thrown when the `language` option contains a locale code that is * not in the list of supported languages. * * @param language - The invalid language code that was provided. */ export default class UnsupportedLanguageError extends Error { constructor(language: string); }