import { z } from '@frontmcp/lazy-zod'; import type { MetricsOptionsInterface, MetricsProcessOptionsInterface } from './interfaces'; export type { MetricsOptionsInterface, MetricsProcessOptionsInterface }; export declare const metricsProcessOptionsSchema: import("@frontmcp/lazy-zod").ZodObject<{ eventLoopLag: import("@frontmcp/lazy-zod").ZodOptional; fdCount: import("@frontmcp/lazy-zod").ZodOptional; activeHandles: import("@frontmcp/lazy-zod").ZodOptional; }, import("zod/v4/core").$strip>; export declare const metricsOptionsSchema: import("@frontmcp/lazy-zod").ZodObject<{ enabled: import("@frontmcp/lazy-zod").ZodDefault>; path: import("@frontmcp/lazy-zod").ZodDefault>; format: import("@frontmcp/lazy-zod").ZodDefault, import("@frontmcp/lazy-zod").ZodLiteral<"json">]>>>; auth: import("@frontmcp/lazy-zod").ZodDefault, import("@frontmcp/lazy-zod").ZodLiteral<"token">, import("@frontmcp/lazy-zod").ZodObject<{ token: import("@frontmcp/lazy-zod").ZodString; }, import("zod/v4/core").$strip>]>>>; tokenEnv: import("@frontmcp/lazy-zod").ZodDefault>; include: import("@frontmcp/lazy-zod").ZodOptional, import("@frontmcp/lazy-zod").ZodLiteral<"tools">, import("@frontmcp/lazy-zod").ZodLiteral<"resources">, import("@frontmcp/lazy-zod").ZodLiteral<"http">, import("@frontmcp/lazy-zod").ZodLiteral<"storage">, import("@frontmcp/lazy-zod").ZodLiteral<"skills">, import("@frontmcp/lazy-zod").ZodLiteral<"auth">, import("@frontmcp/lazy-zod").ZodLiteral<"sessions">]>>>; process: import("@frontmcp/lazy-zod").ZodOptional; fdCount: import("@frontmcp/lazy-zod").ZodOptional; activeHandles: import("@frontmcp/lazy-zod").ZodOptional; }, import("zod/v4/core").$strip>>; }, import("zod/v4/core").$strip>; /** * Default metrics configuration values. * * The endpoint is OFF by default. Enabling it is a deliberate decision — * see `MetricsOptionsInterface` for the rationale. */ export declare const DEFAULT_METRICS_OPTIONS: Pick, 'enabled' | 'path' | 'format' | 'auth' | 'tokenEnv'>; export type MetricsOptions = z.infer; export type MetricsOptionsInput = MetricsOptionsInterface; //# sourceMappingURL=schema.d.ts.map