/** Shared prefix for all of the module's internal endpoints. */ export declare const INTERNAL_PREFIX = "/__nuxt-otel"; export declare const INGEST_PATH = "/__nuxt-otel-ingest"; export declare const MCP_PATH = "/__nuxt-otel-mcp"; export declare const UI_PATH = "/__nuxt-otel"; /** * Returns `true` if the given request path matches one of the module's internal * endpoints (DevTools UI, OTLP ingest or MCP server). These endpoints should be * excluded from OpenTelemetry tracing to avoid circular spans and noise. */ export declare function isInternalRoute(path: string): boolean;