import * as _nuxt_schema from '@nuxt/schema'; import { CreateProxyEventHandlerOptions } from 'h3-proxy'; type ProxyOptions = CreateProxyEventHandlerOptions[] | CreateProxyEventHandlerOptions; interface ModuleOptions { options: ProxyOptions; } declare module 'nuxt/schema' { interface RuntimeConfig { proxy: ModuleOptions; } } declare const _default: _nuxt_schema.NuxtModule; export { _default as default }; export type { ModuleOptions, ProxyOptions };