import * as _nuxt_schema from '@nuxt/schema'; import { RegionInput } from '@timbenniks/contentstack-endpoints'; interface ModuleOptions { apiKey: string; deliveryToken: string; environment: string; region?: RegionInput; branch?: string; locale?: string; host?: string; livePreview?: { enable?: boolean; previewToken?: string; editableTags?: boolean; editButton?: boolean | { enable?: boolean; position?: 'top' | 'bottom' | 'left' | 'right' | 'top-left' | 'top-right' | 'top-center' | 'bottom-left' | 'bottom-right' | 'bottom-center'; exclude?: ('insideLivePreviewPortal' | 'outsideLivePreviewPortal')[]; includeByQueryParameter?: boolean; }; mode?: 'builder' | 'preview'; ssr?: boolean; host?: string; }; personalization?: { enable?: boolean; projectUid?: string; }; /** Extra packages to transpile for CJS→ESM compatibility on the client. */ extraTranspile?: string[]; debug?: boolean; } declare const _default: _nuxt_schema.NuxtModule; export { _default as default }; export type { ModuleOptions };