import * as _nuxt_schema from '@nuxt/schema'; interface ModuleOptions { /** * When to inject the Vercel Toolbar. * - `auto` - show the toolbar in development only * - `manual` - allow you to choose when to show the toolbar * - `disabled` - completely disable the toolbar */ mode: 'auto' | 'manual' | 'disabled'; } declare const _default: _nuxt_schema.NuxtModule<{ mode: string; }, { mode: string; }, false>; export { ModuleOptions, _default as default };