I'm getting the following Intellisense error when using `require('emoji-regex')` ``` This expression is not callable. Type 'typeof import("emoji-regex")' has no call signatures.ts(2349) ``` Some context for how I'm using this: ``` const emojiRegex = require('emoji-regex'); ... const sanitizedText = text.replace(emojiRegex(), ''); ``` This package works fine this way when actually being used. It just always shows this Typescript error. <img width="528" alt="Screen Shot 2022-10-07 at 11 15 46" src="https://user-images.githubusercontent.com/104509210/194588615-a6ee2953-dff3-479c-a927-5e6b4d8f04e7.png">