import { z } from '@frontmcp/lazy-zod'; import { LogLevel, type LoggingOptionsInterface } from './interfaces'; /** * Logging options Zod schema. */ export declare const loggingOptionsSchema: import("@frontmcp/lazy-zod").ZodObject<{ level: import("@frontmcp/lazy-zod").ZodDefault>>; prefix: import("@frontmcp/lazy-zod").ZodOptional; enableConsole: import("@frontmcp/lazy-zod").ZodDefault>; transports: import("@frontmcp/lazy-zod").ZodDefault, import("@frontmcp/di").Type>>>>; }, import("zod/v4/core").$strip>; /** * Logging configuration type (with defaults applied, excluding transports). */ export type LoggingConfigType = Omit, 'transports'>; /** * Logging options type (with defaults applied). */ export type LoggingOptions = z.infer; /** * Logging options input type (for user configuration). * Uses explicit interface for better IDE autocomplete. */ export type LoggingOptionsInput = LoggingOptionsInterface; //# sourceMappingURL=schema.d.ts.map