I've encountered a Typescript error that I'm unable to resolve because it doesn't originate from my code. The issue arises when I import a NextJs/React module named next-seo and use it as instructed:
<NextSeo config={seoConfig} />
The error message reads:
JSX element type 'NextSeo' does not have any construct or call signatures
Even after removing the config attribute, the same error persists. It seems like an issue with the library itself, so I'm unsure how to proceed without waiting for the author to address it. Am I mistaken?
EDIT: Additional information added
The import statement is quite straightforward
import NextSeo from 'next-seo'