The "TypeScript Usage" section on NPM says that the package needs to be imported as default import:
But it's incorrect. The correct import is a named import like this:
import { Jimp } from "jimp";
Your website docs is correct but the README on NPM is wrong.