import * as _nuxt_schema from '@nuxt/schema'; declare module '#nuxt-otel-config' { const nuxtOtel: { nuxt?: boolean; h3?: boolean; srvx?: boolean; unstorage?: boolean; }; const devtoolsEnabled: boolean; const devServerUrl: string | undefined; } interface TracingChannelOptions { nuxt?: boolean; h3?: boolean; srvx?: boolean; unstorage?: boolean; } interface ModuleOptions { instrument: boolean; devtools?: boolean; } declare function normalizeTracingChannel(val: boolean | TracingChannelOptions | undefined): TracingChannelOptions; declare const _default: _nuxt_schema.NuxtModule; export { _default as default, normalizeTracingChannel }; export type { ModuleOptions, TracingChannelOptions };