I am using react-quill Editor in my react app, where I need to resize the image in the editor there for I am using "quill-image-resize-module" yarn package but when I import this package in the JS file, It's giving me an error "Could not find a declaration file for module 'quill-image-resize-module'. 'e:/development/React JS/stepsfrontend/node_modules/quill-image-resize-module/image-resize.min.js' implicitly has an 'any' type.
Try npm i --save-dev @types/quill-image-resize-module
if it exists or add a new declaration (.d.ts) file containing `declare module 'quill-image-resize-module';"
import ImageResize from 'quill-image-resize-module';