/** * Canonical component names for structured logging. * * These names are used with `logger.component("name")` to create * component-scoped loggers. The component field appears in JSON output * for Grafana/Loki filtering and as `[name]` in text output. * * Convention: lowercase-kebab-case. * Not enforced at runtime — any string is accepted. This registry is a * non-exhaustive reference to promote reuse and discoverability. * * @module */ export declare const LogComponents: { readonly server: "server"; readonly config: "config"; readonly middleware: "middleware"; readonly cors: "cors"; readonly security: "security"; readonly discovery: "discovery"; readonly pipeline: "pipeline"; readonly global: "global"; readonly ssr: "ssr"; readonly ssrService: "ssr-service"; readonly ssrOrchestrator: "ssr-orchestrator"; readonly rsc: "rsc"; readonly html: "html"; readonly htmlGenerator: "html-generator"; readonly mdx: "mdx"; readonly mdxCompiler: "mdx-compiler"; readonly mdxCache: "mdx-cache"; readonly hmr: "hmr"; readonly hmrHandler: "hmr-handler"; readonly hmrServer: "hmr-server"; readonly renderer: "renderer"; readonly snippetRenderer: "snippet-renderer"; readonly build: "build"; readonly esm: "esm"; readonly esmTransform: "esm-transform"; readonly ssrTransform: "ssr-transform"; readonly ssrModuleLoader: "ssr-module-loader"; readonly moduleLoader: "module-loader"; readonly moduleServer: "module-server"; readonly cache: "cache"; readonly cacheRegistry: "cache-registry"; readonly distributedCache: "distributed-cache"; readonly httpCache: "http-cache"; readonly httpCacheWrapper: "http-cache-wrapper"; readonly ssrHttpCache: "ssr-http-cache"; readonly fileCache: "file-cache"; readonly moduleCache: "module-cache"; readonly transformCache: "transform-cache"; readonly api: "api"; readonly httpHandler: "http-handler"; readonly client: "client"; readonly runtimeHandler: "runtime-handler"; readonly redis: "redis"; readonly fsIntegration: "fs-integration"; readonly readOperations: "read-operations"; readonly otel: "otel"; readonly tracing: "tracing"; readonly metrics: "metrics"; readonly autoInstrument: "auto-instrument"; readonly perf: "perf"; readonly agent: "agent"; readonly tool: "tool"; readonly workflowDiscovery: "workflow-discovery"; readonly validator: "validator"; readonly error: "error"; readonly env: "env"; }; export type LogComponent = (typeof LogComponents)[keyof typeof LogComponents]; //# sourceMappingURL=components.d.ts.map