···11-declare const _default: any
11+// This type declaration file is required to break a circular type resolution in vue-tsc.
22+//
33+// nuxt-og-image generates a type declaration (.nuxt/module/nuxt-og-image.d.ts) that imports
44+// this component's type. This creates a cycle: nuxt.d.ts → nuxt-og-image.d.ts → Package.vue →
55+// needs auto-import globals from nuxt.d.ts. Without this file, vue-tsc resolves the component
66+// before the globals are available, so all auto-imports (computed, toRefs, useFetch, etc.) fail.
77+88+import type { DefineComponent } from 'vue'
99+1010+declare const _default: DefineComponent<{
1111+ name: string
1212+ version: string
1313+ primaryColor?: string
1414+}>
215316export default _default