I am developing a project with vue3, typescript and vite. vue-recaptcha has no type declaration suitable for vue3. I am getting a vite build error due to the code [here](https://github.com/DanSnow/vue-recaptcha/blob/master/types/index.d.ts#L16). When I remove the `extends Vue` syntax, the problem goes away. This is because vue does not support class component with version 3 and we cannot copy the class prototype with the extend keyword.