import * as _nuxt_schema from '@nuxt/schema'; import { ClientAuthorizationParams } from '@auth0/auth0-spa-js'; export { AdapterArgs, AdapterOptions } from '../dist/runtime/utils/withAdapter.js'; export { ApiOptions, HooksOptions, ParamsOptions, RefOptions } from '../dist/runtime/plugins/api.global.js'; interface MerkalyI18nLocale { code: string; file: string; language: string; name: string; } interface MerkalyModuleOptions { api: { url: string; prefix?: string; }; auth0: { audience: string; callbackUrl: string; client: string; domain: string; logoutUrl?: string; params?: Omit; requiresAuth: boolean; requiresTenant: boolean; }; i18n?: { defaultLocale: string; locales: MerkalyI18nLocale[]; }; plausible?: { domain: string; localhost: string; }; sentry: { dsn: string; project: string; token: string; }; } declare const _default: _nuxt_schema.NuxtModule; export { _default as default }; export type { MerkalyI18nLocale, MerkalyModuleOptions };