Reproducible example: ```vue <script setup lang="ts" generic="T"> const props = withDefaults(defineProps<{ modelValue: T; title?: string; }>(), { title: 'Hello', }); </script> ``` Screenshot of the error: 