I'm using InstanceType to create a custom NuxtImg component with some default configs that still pass-through all props of NuxtImg:
type NuxtImgProps = InstanceType<typeof NuxtImg>['$props']
interface Props extends /* @vue-ignore */ NuxtImgProps {}
defineProps<Props>()
in v2.0.0, typeof NuxtImg is no longer a valid type to be passed into InstanceType
