Errors when using lib-jitsi-meet with TypeScript

Is lib-jitsi-meet with TypeScript ready for production?

Is there a approved way to import these packages into a new TypeScript project?

I’ve noticed the JitsiMeet react app is accessing the API like this:

import JitsiMeetJS, { JitsiConnectionEvents } from '../lib-jitsi-meet';

and the API is being used in the package.json here.

"lib-jitsi-meet": "https://github.com/jitsi/lib-jitsi-meet/releases/download/v1560.0.0+92a5738b/lib-jitsi-meet.tgz"

However when I try to import and use the package - I receive this error.

All imports in import declaration are unused.ts(6192)
Could not find a declaration file for module 'lib-jitsi-meet/dist/esm'. '//src/jitsi-lib-test/node_modules/lib-jitsi-meet/dist/esm/index.js' implicitly has an 'any' type.
  Try `npm i --save-dev @types/lib-jitsi-meet` if it exists or add a new declaration (.d.ts) file containing `declare module 'lib-jitsi-meet/dist/esm';

Are there are additional known steps needed to make this work?
Are there any examples of projects using lib-jitsi-meet with TypeScript?